@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
16 lines (15 loc) • 655 B
TypeScript
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;