Rename some components and update module ids

This commit is contained in:
Jonas Dellinger
2022-04-23 00:41:37 +02:00
parent 20e2c55278
commit d9e9adead8
3 changed files with 6 additions and 7 deletions

View File

@@ -11,9 +11,9 @@ interface ButtonProps {
bottomSeparator?: boolean;
}
export const Button: FC<ButtonProps> = ControlsModule.a;
export const Button: FC<ButtonProps> = ControlsModule.d;
interface SwitchProps {
interface ToggleProps {
label?: string;
description?: string;
checked: boolean;
@@ -22,7 +22,7 @@ interface SwitchProps {
onChange?(checked: boolean): void;
}
export const Switch: VFC<SwitchProps> = ControlsModule.j;
export const Toggle: VFC<ToggleProps> = ControlsModule.jb;
interface NotchLabel {
notchIndex: number;
@@ -43,4 +43,4 @@ interface SliderProps {
onChange?(value: number): void;
}
export const Slider: VFC<SliderProps> = ControlsModule.l;
export const Slider: VFC<SliderProps> = ControlsModule.eb;