@fluentui/react-theme-provider
Version:
Fluent UI React theme provider component, hook, and theme related utilities.
13 lines (12 loc) • 523 B
TypeScript
import * as React from 'react';
import { TokenSetType } from '@fluentui/theme';
/**
* Hook which given draftState, will ensure that tokens are spit out to inline styles.
* @param draftState - state to read and manipulate. Expected to have `tokens` prop, will
* transform into inline
* @param prefix - prefix to prepend to variables (e.g. "--button")
*/
export declare const useInlineTokens: (draftState: {
style?: React.CSSProperties | undefined;
tokens?: TokenSetType | undefined;
}, prefix: string) => void;