import { Flex } from '../Box/Flex'; import { Link } from '../Link'; import { Text } from '../Text'; import { Icon } from './Icon'; import type { IconProps } from './defs'; export default { component: Icon, title: 'UI/Icon', argTypes: { color: { control: 'select' }, }, parameters: { layout: 'fullscreen', }, }; export const Usage = (args: IconProps) => ( } className="hi" inline /> We're using{' '} Tabler Icons {' '} Icons as icon set, so you can check more details about it on their website );