UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

15 lines 375 B
import * as React from 'react'; export interface ChartsToolbarProps {} export interface ChartsToolbarSlots { /** * Custom component for the toolbar. * @default ChartsToolbar */ toolbar?: React.ElementType<ChartsToolbarProps>; } export interface ChartsToolbarSlotProps { /** * Props for the toolbar component. */ toolbar?: Partial<ChartsToolbarProps>; }