@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
13 lines (10 loc) • 625 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 { ClassificationBadgeProps } from './types.js';
import 'tailwind-variants';
import './styles.js';
declare const ClassificationBadgeContext: react.Context<ContextValue<ClassificationBadgeProps, HTMLSpanElement>>;
declare function ClassificationBadgeProvider({ children, ...props }: ProviderProps<ClassificationBadgeProps>): react_jsx_runtime.JSX.Element;
export { ClassificationBadgeContext, ClassificationBadgeProvider };