UNPKG

@intuitionrobotics/thunderstorm

Version:
15 lines 433 B
import { type CSSProperties } from "react"; export type Stylable = { style?: CSSProperties; className?: string; }; export declare class StylableBuilder { style?: CSSProperties; className?: string; setStyle(style: CSSProperties): this; clearInlineStyle(): this; addStyle(style: CSSProperties): this; setClassName(className: string): this; build(): Stylable; } //# sourceMappingURL=Stylable.d.ts.map