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