@gsretail.com/gui-core
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
10 lines (9 loc) • 419 B
TypeScript
/// <reference types="react" />
import { WithGuiTheme } from '../../../assets/theme';
import GuiTimeInputProps from './GuiTimeInput.type';
declare const StyledBox: import("@emotion/styled").StyledComponent<((GuiTimeInputProps & WithGuiTheme) | (GuiTimeInputProps & WithGuiTheme & {
children?: import("react").ReactNode;
})) & {
theme?: import("@emotion/react").Theme;
}, {}, {}>;
export { StyledBox };