@alyle/ui
Version:
Minimal Design, a set of components for Angular
17 lines (16 loc) • 503 B
TypeScript
import { StyleContainer } from '../style';
import { ThemeVariables } from '../theme-config';
export interface SliderVariables {
root?: StyleContainer;
defaultConfig?: {
appearance?: keyof SliderAppearance;
};
color?: (theme: ThemeVariables, value: string) => StyleContainer;
appearance?: SliderAppearance;
}
export interface SliderAppearance {
standard?: {
styles: StyleContainer;
color: (theme: ThemeVariables, value: string) => StyleContainer;
};
}