UNPKG

stoop

Version:

CSS-in-JS library with type inference, theme creation, and variants support.

7 lines (6 loc) 296 B
/** * Main entry point for Stoop CSS-in-JS library. * Exports the createStoop factory function and essential public types. */ export { createStoop } from "./create-stoop"; export type { CSS, StoopConfig, StoopInstance, StyledComponentProps, Theme, UtilityFunction, Variants, } from "./types";