UNPKG

@gsretail.com/gui-core

Version:

A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook

15 lines (14 loc) 472 B
import React from 'react'; import GuiTableBodyProps from './type'; import { GuiTheme } from '../../../assets/theme'; declare type WithStyled = GuiTableBodyProps & { theme?: GuiTheme; }; declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<GuiTableBodyProps & { theme?: GuiTheme; } & { children?: React.ReactNode; } & { theme?: import("@emotion/react").Theme; }, {}, {}>; export default styled;