UNPKG

@onesy/ui-react

Version:
14 lines (13 loc) 379 B
import React from 'react'; import { ILine } from '../Line/Line'; import { IElement, IPropsAny } from '../types'; export declare type IChips = ILine & { total?: number; showAllDefault?: boolean; max?: number; moreShowAll?: boolean; AdditionalChip?: IElement; AdditionalChipProps?: IPropsAny; }; declare const Chips: React.FC<IChips>; export default Chips;