@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
11 lines (10 loc) • 495 B
TypeScript
import { StyledProps } from '@smart-react-components/core/styled-props';
import { PaletteProp, Partial, ResponsiveProp, SizeProp } from '@smart-react-components/core/types';
interface Props extends StyledProps, Partial<ResponsiveProp<'radioSize', SizeProp>> {
isChecked?: boolean;
isOutline?: boolean;
isSoft?: boolean;
palette?: PaletteProp;
}
declare const _default: import("styled-components").StyledComponent<"div", any, StyledProps & Props, never>;
export default _default;