UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

15 lines 380 B
import * as React from 'react'; interface BarGroupProps extends React.HTMLAttributes<SVGGElement> { skipAnimation: boolean; layout: 'horizontal' | 'vertical' | undefined; xOrigin: number; yOrigin: number; } export declare function BarGroup({ skipAnimation, layout, xOrigin, yOrigin, ...props }: BarGroupProps): import("react/jsx-runtime").JSX.Element; export {};