@ozen-ui/kit
Version:
React component library
8 lines (7 loc) • 403 B
TypeScript
import type { SectionMessageSizeVariant } from './types';
export type SectionMessageContextValue = {
size: SectionMessageSizeVariant;
};
export declare const SectionMessageContextDefaultValue: SectionMessageContextValue;
export declare const SectionMessageContext: import("react").Context<SectionMessageContextValue>;
export declare const useSectionMessageContext: () => SectionMessageContextValue;