UNPKG

react-audio-visualizers

Version:

<h1 align="center">React Audio Visualizers</h1>

11 lines (10 loc) 323 B
/// <reference types="react" /> import { Color } from 'react-audio-visualizers-core'; interface RoundBarProps { position: [number, number]; height: number; width: number; color?: Color; } export declare const RoundBar: ({ position: [x, y], height, width, color, }: RoundBarProps) => JSX.Element; export {};