UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

22 lines (21 loc) 863 B
import { BoxProps, ElementProps, Factory, MantineSize, StylesApiProps } from '../../../core'; export type ComboboxChevronStylesNames = 'chevron'; export type ComboboxChevronCSSVariables = { chevron: '--combobox-chevron-size'; }; export interface ComboboxChevronProps extends BoxProps, StylesApiProps<ComboboxChevronFactory>, ElementProps<'svg', 'opacity' | 'display'> { size?: MantineSize | (string & {}); error?: React.ReactNode; } export type ComboboxChevronFactory = Factory<{ props: ComboboxChevronProps; ref: SVGSVGElement; stylesNames: ComboboxChevronStylesNames; vars: ComboboxChevronCSSVariables; }>; export declare const ComboboxChevron: import("../../../core").MantineComponent<{ props: ComboboxChevronProps; ref: SVGSVGElement; stylesNames: ComboboxChevronStylesNames; vars: ComboboxChevronCSSVariables; }>;