@littlespoon/box
Version:
14 lines • 471 B
TypeScript
import type { StyleProps } from '@littlespoon/theme/lib/style';
import type React from 'react';
import type { StyledComponentProps } from 'styled-components';
export interface BoxProps extends StyledComponentProps<'div', object, object, string | number | symbol>, StyleProps {
/**
* Box content.
*/
children?: React.ReactNode;
}
/**
* Box
*/
export default function Box(props: BoxProps): React.ReactElement<BoxProps>;
//# sourceMappingURL=Box.d.ts.map