import { layerIntents } from '@fuel-ui/css'; import { Text } from '../Text'; import { Badge } from './Badge'; import type { BadgeProps } from './defs'; export default { component: Badge, title: 'UI/Badge', argTypes: {}, }; export const Usage = (args: BadgeProps) => ( Label Label Label ); export const Intents = (args: BadgeProps) => ( {layerIntents.map((intent) => ( Label ))} ); export const Disabled = (args: BadgeProps) => ( {layerIntents.map((intent) => ( Label ))} );