react-dial-knob
Version:
Dial knob UI component for the web, based on pure HTML/SVG tags.
11 lines • 462 B
TypeScript
import React from 'react';
import { KnobProps } from '../Knob';
import { DonutTheme } from './Donut';
import { BasicTheme } from './Basic';
import { HighContrastTheme } from './HighContrast';
import { WhiteTheme } from './White';
export default interface SkinProps<T extends DonutTheme | BasicTheme | HighContrastTheme | WhiteTheme | unknown> extends KnobProps {
style?: React.CSSProperties;
theme?: T;
}
//# sourceMappingURL=SkinProps.d.ts.map