Comparing version 0.0.12 to 0.0.13
{ | ||
"name": "onno", | ||
"license": "MIT", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"description": "Responsive style props for building themed design systems", | ||
@@ -32,3 +32,3 @@ "homepage": "https://github.com/wagerfield/onno/tree/master/packages/onno#readme", | ||
}, | ||
"gitHead": "11f8f588f23357434f474806f6060f36de5ee87a" | ||
"gitHead": "357b87bfdc12b5b797a31d40dbb25c770c4f692d" | ||
} |
import * as T from "./types" | ||
export declare type VariantProp = T.Prop<number | string> | ||
export interface ButtonVariantProps extends T.ThemeProps { | ||
export interface ButtonStyleProps extends T.ThemeProps { | ||
buttonStyle?: VariantProp | ||
bst?: VariantProp | ||
} | ||
export declare const buttonStyle: T.RenderFunction<ButtonVariantProps, any> | ||
export interface ColorVariantProps extends T.ThemeProps { | ||
export declare const buttonStyle: T.RenderFunction<ButtonStyleProps, any> | ||
export interface ColorStyleProps extends T.ThemeProps { | ||
colorStyle?: VariantProp | ||
cst?: VariantProp | ||
} | ||
export declare const colorStyle: T.RenderFunction<ColorVariantProps, any> | ||
export interface TextVariantProps extends T.ThemeProps { | ||
export declare const colorStyle: T.RenderFunction<ColorStyleProps, any> | ||
export interface TextStyleProps extends T.ThemeProps { | ||
textStyle?: VariantProp | ||
tst?: VariantProp | ||
} | ||
export declare const textStyle: T.RenderFunction<TextVariantProps, any> | ||
export declare const textStyle: T.RenderFunction<TextStyleProps, any> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
97304