goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
13 lines • 433 B
TypeScript
import { default as React } from 'react';
import { ChipStyles } from '../../theme';
export interface ChipProps {
label: string;
icon?: React.ReactNode;
onDelete?: () => void;
onClick?: () => void;
/** Comprehensive styling options including theme, custom colors, and layout properties. */
styles?: ChipStyles;
}
declare const Chip: React.FC<ChipProps>;
export default Chip;
//# sourceMappingURL=index.d.ts.map