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