UNPKG

@frontend-kasplo/kasplo-ui-components

Version:
15 lines (14 loc) 414 B
import React from 'react'; export interface ChipProps { label: string; backgroundColor?: string; textColor?: string; borderColor?: string; className?: string; variant?: 'rounded' | 'pill'; size?: 'small' | 'medium' | 'large'; fontSize?: 'small' | 'medium' | 'large'; width?: 'small' | 'medium' | 'large' | 'auto'; } declare const Chip: React.FC<ChipProps>; export default Chip;