Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import { Box, BoxProps } from '@stacks/ui'; import React, { FC } from 'react'; type LargeCheckmarkProps = BoxProps; export const LargeCheckmark: FC<LargeCheckmarkProps> = props => ( <Box {...props}> <svg width="104" height="104" viewBox="0 0 104 104" fill="none" xmlns="http://www.w3.org/2000/svg" > <circle cx="52" cy="52" r="49" stroke="#C5CCFF" strokeWidth="6" /> <path d="M28 50.7692L44.8 68L76 36" stroke="#3700FF" strokeWidth="6" strokeLinecap="round" strokeLinejoin="round" /> </svg> </Box> ); |