UNPKG

@amaui/ui-react

Version:
12 lines (11 loc) 322 B
import React from 'react'; import { ILine } from '../Line/Line'; import { IElement, IPropsAny } from '../types'; export interface IChips extends ILine { total?: number; max?: number; AdditionalChip?: IElement; AdditionalChipProps?: IPropsAny; } declare const Chips: React.FC<IChips>; export default Chips;