@gsretail.com/gui-core
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
9 lines (8 loc) • 439 B
TypeScript
import React from "react";
import { WithGuiTheme } from "../../assets/theme";
import { GuiInputProps } from "./GuiInput.type";
declare type WithStyled = (GuiInputProps & WithGuiTheme) | typeof React.forwardRef;
declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<React.PropsWithChildren<WithStyled> & {
theme?: import("@emotion/react").Theme;
}, {}, {}>;
export default styled;