UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

9 lines (8 loc) 311 B
interface IUseStyles<T, V> { styleName: string; variantName?: V; customTokens?: Partial<T>; isOptional?: boolean; } export declare const useStylesV2: <T extends object, V = string | undefined>({ styleName, variantName, customTokens, isOptional, }: IUseStyles<T, V>) => T | undefined; export {};