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