UNPKG

@smart-react-components/ui

Version:
16 lines (15 loc) 655 B
import { IntrinsicStyledCoreProps } from '@smart-react-components/core/element-props/intrinsic-styled-core-props'; import { JSXElementProps, PaletteProp, Partial, ResponsiveProp, ShapeProp, SizeProp } from '@smart-react-components/core/types'; import React from 'react'; export interface Props extends Partial<ResponsiveProp<'size', SizeProp>>, IntrinsicStyledCoreProps { children: JSX.Element[]; elementProps?: JSXElementProps; hasSpace?: boolean; isFixedSize?: boolean; isOutline?: boolean; isSoft?: boolean; palette?: PaletteProp; shape?: ShapeProp; } declare const BadgeList: React.FC<Props>; export default BadgeList;