@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
14 lines (13 loc) • 487 B
TypeScript
import { StyledProps } from '@smart-react-components/core/styled-props';
import { PaletteProp, ShapeProp } from '@smart-react-components/core/types';
interface Props extends StyledProps {
isActive: boolean;
isDisabled: boolean;
isOutline: boolean;
isSoft: boolean;
palette: PaletteProp;
separator: string;
shape: ShapeProp;
}
declare const _default: import("styled-components").StyledComponent<"li", any, StyledProps & Props, never>;
export default _default;