UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

23 lines (22 loc) 824 B
import { ElementType, ForwardedRef } from 'react'; export type ChipProperties = { /** Chip Size */ chipSize?: 'compact'; /** Chip Type */ chipType?: 'selection'; /** @ignore */ className?: string; /** Tag of Component */ tag?: ElementType; }; /** * Compact elements used to filter content or display user input. * @docs {@link https://design.visa.com/react/components/chip | See Docs} * @vgar TODO * @wcag TODO */ declare const _default: <HTMLElementType = HTMLDivElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & ChipProperties) => import("react").ReactElement; export default _default;