ingred-ui
ingred-ui copied to clipboard
Refactor: ToggleButton
ネイティブの<input />
にprops群を寄せたい
react-hook-form
などのフォームライブラリと併用する際にあつかいづらいため。
- export type ToggleButtonProps = {
+ export type ToggleButtonProps = React.ComponentPropsWithRef<"input"> & {
- active?: boolean; ← `checked`propsで扱う
disabled?: boolean;
onChange?: () => void;
width?: string;
activeText?: string;
inActiveText?: string;
inputRef?: React.Ref<HTMLInputElement>;
};