2
0
Files
bot/apps/builder/src/features/blocks/inputs/buttons/components/ButtonsInputIcon.tsx
2022-11-15 15:14:38 +01:00

8 lines
235 B
TypeScript

import { CheckSquareIcon } from '@/components/icons'
import { IconProps } from '@chakra-ui/react'
import React from 'react'
export const ButtonsInputIcon = (props: IconProps) => (
<CheckSquareIcon color="orange.500" {...props} />
)