FormControl
FormControl
は、フォーム要素に、ラベル、ヘルパーメッセージ、エラーメッセージなどをグループ化するために使用されるコンポーネントです。
テーマ
FormControl
は、複数パーツのコンポーネントです。
コンポーネントのスタイルを変更したい場合は、こちらをご覧ください。
export const FormControl: ComponentMultiStyle<"FormControl"> = {baseStyle: {container: {position: "relative",w: "100%",},errorMessage: {color: ["danger.500", "danger.400"],display: "block",fontSize: "sm",mt: "2",},helperMessage: {color: ["blackAlpha.700", "whiteAlpha.600"],display: "block",fontSize: "sm",mt: "2",},label: {fontSize: "md",fontWeight: "medium",mb: "2",me: "3",opacity: 1,transitionDuration: "normal",transitionProperty: "common",_disabled: {opacity: 0.4,},},requiredIndicator: {color: ["danger.500", "danger.400"],ms: "1",},},}
GitHubでこのページを編集する