@onesy/ui-react
Version:
UI for React
14 lines (13 loc) • 379 B
TypeScript
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;