UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

38 lines (37 loc) 2.42 kB
import type { CheckboxCssVariables, CheckboxFactory, CheckboxIconComponent, CheckboxProps, CheckboxStylesNames, CheckboxVariant } from './Checkbox'; import type { CheckboxCardCssVariables, CheckboxCardFactory, CheckboxCardProps, CheckboxCardStylesNames } from './CheckboxCard/CheckboxCard'; import type { CheckboxGroupFactory, CheckboxGroupProps, CheckboxGroupStylesNames } from './CheckboxGroup/CheckboxGroup'; import type { CheckboxIndicatorCssVariables, CheckboxIndicatorFactory, CheckboxIndicatorProps, CheckboxIndicatorStylesNames, CheckboxIndicatorVariant } from './CheckboxIndicator/CheckboxIndicator'; import type { CheckboxIconProps, CheckIconProps } from './CheckIcon'; export { Checkbox } from './Checkbox'; export { CheckboxGroup, CheckboxGroupContext } from './CheckboxGroup/CheckboxGroup'; export { CheckIcon } from './CheckIcon'; export { CheckboxIndicator } from './CheckboxIndicator/CheckboxIndicator'; export { CheckboxCard, CheckboxCardContext } from './CheckboxCard/CheckboxCard'; export type { CheckboxProps, CheckboxStylesNames, CheckboxCssVariables, CheckboxFactory, CheckboxVariant, CheckboxIconComponent, CheckboxGroupProps, CheckboxGroupStylesNames, CheckboxGroupFactory, CheckboxIndicatorProps, CheckboxIndicatorStylesNames, CheckboxIndicatorCssVariables, CheckboxIndicatorFactory, CheckboxIndicatorVariant, CheckboxCardProps, CheckboxCardStylesNames, CheckboxCardCssVariables, CheckboxCardFactory, CheckboxIconProps, CheckIconProps, }; export declare namespace Checkbox { type Props = CheckboxProps; type StylesNames = CheckboxStylesNames; type CssVariables = CheckboxCssVariables; type Factory = CheckboxFactory; type Variant = CheckboxVariant; type IconComponent = CheckboxIconComponent; namespace Group { type Props = CheckboxGroupProps; type StylesNames = CheckboxGroupStylesNames; type Factory = CheckboxGroupFactory; } namespace Indicator { type Props = CheckboxIndicatorProps; type StylesNames = CheckboxIndicatorStylesNames; type CssVariables = CheckboxIndicatorCssVariables; type Factory = CheckboxIndicatorFactory; type Variant = CheckboxIndicatorVariant; } namespace Card { type Props = CheckboxCardProps; type StylesNames = CheckboxCardStylesNames; type CssVariables = CheckboxCardCssVariables; type Factory = CheckboxCardFactory; } }