@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
11 lines (10 loc) • 556 B
text/typescript
import { OptionItemProps } from '@zag-js/menu';
import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
type PartialOptionItemProps = Omit<OptionItemProps, 'type'>;
export interface MenuCheckboxItemBaseProps extends PartialOptionItemProps, PolymorphicProps {
}
export interface MenuCheckboxItemProps extends HTMLProps<'div'>, MenuCheckboxItemBaseProps {
}
export declare const MenuCheckboxItem: ForwardRefExoticComponent<MenuCheckboxItemProps & RefAttributes<HTMLDivElement>>;
export {};