UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

10 lines (9 loc) 401 B
import React from 'react'; export interface AccordionChevronProps extends React.ComponentPropsWithoutRef<'svg'> { /** Controls `width` and `height` of the icon, `16` by default */ size?: number | string; } export declare function AccordionChevron({ style, size, ...others }: AccordionChevronProps): React.JSX.Element; export declare namespace AccordionChevron { var displayName: string; }