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