el-vis-audio
Version:
audio/visual design system for [elementary.audio](https:/elementary.audio)
16 lines (15 loc) • 377 B
TypeScript
import React from "react";
export interface SliderProps {
diameter?: string;
fillColor?: string;
trackHeight?: string;
trackColor?: string;
tickList?: string[];
tickColor?: string;
tickPadding?: string;
min?: number;
step?: number;
max?: number;
value?: number;
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
}