@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
16 lines (15 loc) • 637 B
TypeScript
import { StyledProps } from '@smart-react-components/core/styled-props';
import { PaletteProp, ResponsiveProp, ShapeProp, SizeProp } from '@smart-react-components/core/types';
import { OrderPosition } from '../../types';
interface Props extends StyledProps, ResponsiveProp<'buttonSize', SizeProp> {
addonPosition: OrderPosition;
hasHover: boolean;
isDisabled: boolean;
isOutline: boolean;
isSeparated: boolean;
isSoft: boolean;
palette: PaletteProp;
shape?: ShapeProp;
}
declare const _default: import("styled-components").StyledComponent<"div", any, StyledProps & Props, never>;
export default _default;