@frontend-kasplo/kasplo-ui-components
Version:
UI Components Library
15 lines (14 loc) • 414 B
TypeScript
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;