This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
data, | |
Variable, | |
} from '../../../../packages/helper-scripts/src/color/data'; | |
// Define the types | |
type InputItem = Variable; | |
type NestedObjectValue = string; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--black: #000000; | |
--white: #FFFFFF; | |
--color-grey-grey-50: #F7F7F8; | |
--color-grey-grey-100: #E8E8ED; | |
--color-grey-grey-200: #D1D1DB; | |
--color-grey-grey-300: #A9A9BC; | |
--color-grey-grey-400: #8A8AA3; | |
--color-grey-grey-500: #6C6C89; | |
--color-grey-grey-600: #55556D; | |
--color-grey-grey-700: #3F3F50; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
GatewayProvider, | |
GatewayStatus, | |
useGateway, | |
} from '@civic/solana-gateway-react'; | |
import { WalletAdapterNetwork } from '@solana/wallet-adapter-base'; | |
import { useWallet } from '@solana/wallet-adapter-react'; | |
import * as web3 from '@solana/web3.js'; | |
const VerifyCivicAccount = () => { |