import { styledChip } from "./chip.styled"; /** * An interactive chip component that can be used to represent a filter, an attribute, or a category. */ export const Chip = styledChip; export interface ChipProps extends React.ComponentProps { disabled?: boolean; as?: React.ElementType; }