@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
11 lines (8 loc) • 489 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import * as react from 'react';
import { ProviderProps } from '../../lib/types.js';
import { ContextValue } from 'react-aria-components';
import { DividerProps } from './types.js';
declare const DividerContext: react.Context<ContextValue<DividerProps, HTMLHRElement>>;
declare function DividerProvider({ children, ...props }: ProviderProps<DividerProps>): react_jsx_runtime.JSX.Element;
export { DividerContext, DividerProvider };