type Position = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' type Color = 'green' type Size = '3xs' | '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl'; export interface Props { position?: Position text?: string show?: boolean class?: string color?: Color inset?: boolean size?: Size }