@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
12 lines (11 loc) • 520 B
TypeScript
import { StyledProps } from '@smart-react-components/core/styled-props';
import { Partial, ResponsiveProp, ShapeProp, SizeProp } from '@smart-react-components/core/types';
export interface Props extends StyledProps, Partial<ResponsiveProp<'buttonSize', SizeProp>> {
hasSpace?: boolean;
isBlock?: boolean;
isFixedSize?: boolean;
length?: number;
shape?: ShapeProp;
}
declare const _default: import("styled-components").StyledComponent<"div", any, StyledProps & Props, never>;
export default _default;