smart-react-components
Version:
React UI library, wide variety of editable ready to use Styled and React components.
11 lines (10 loc) • 383 B
TypeScript
import ElementProps from "../element/Props";
import { SizeProps } from "../props/size-props";
export interface Props extends ElementProps, SizeProps {
type?: string;
shape?: string;
fixedSize?: boolean;
space?: boolean;
}
declare const _default: import("styled-components").StyledComponent<"div", any, ElementProps & Props, never>;
export default _default;