Untitled
unknown
plain_text
2 years ago
588 B
10
Indexable
import { createIcon } from '@chakra-ui/icons'
const Cross = createIcon({
displayName: 'Cross',
viewBox: '0 0 24 24',
path: (
<path
d="M5 5L19.5 19.5M19.5 5L5 19.5"
stroke="currentColor"
strokeWidth="3"
fill="none"
/>
),
})
const Tick = createIcon({
displayName: 'Tick',
viewBox: '0 0 33 32',
path: (
<path
d="M5 14.8268L12.5 22.3268L26.8268 8"
stroke="currentColor"
strokeWidth="3"
fill="none"
/>
),
})
export { Cross, Tick }
Editor is loading...
Leave a Comment