@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
23 lines (22 loc) • 811 B
TypeScript
import { StyledProps } from '@smart-react-components/core/styled-props';
import { PaletteProp, ResponsiveProp, ShapeProp, SizeProp } from '@smart-react-components/core/types';
interface Props extends StyledProps, ResponsiveProp<'buttonSize', SizeProp> {
hasButtonContainer: boolean;
hasHover: boolean;
hasLeftAddon: boolean;
hasRightAddon: boolean;
hasSeparatedLeftAddon: boolean;
hasSeparatedRightAddon: boolean;
isActive: boolean;
isBlock: boolean;
isDisabled: boolean;
isFixedSize: boolean;
isLink: boolean;
isLoading: boolean;
isSoft: boolean;
isOutline: boolean;
palette: PaletteProp;
shape: ShapeProp;
}
declare const _default: import("styled-components").StyledComponent<"button", any, StyledProps & Props, never>;
export default _default;