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) 711 B
/// <reference types="react" /> import { WithGuiTheme } from '../../../../assets/theme'; import LayoutScrollButtonProps from './type'; declare const StyledBox: import("@emotion/styled").StyledComponent<((LayoutScrollButtonProps & WithGuiTheme) | (LayoutScrollButtonProps & WithGuiTheme & { children?: import("react").ReactNode; })) & { theme?: import("@emotion/react").Theme; }, {}, {}>; declare const StyledButton: import("@emotion/styled").StyledComponent<((LayoutScrollButtonProps & WithGuiTheme) | (LayoutScrollButtonProps & WithGuiTheme & { children?: import("react").ReactNode; })) & { theme?: import("@emotion/react").Theme; }, {}, {}>; export { StyledBox, StyledButton, };