Skip to content

Commit

Permalink
Reduce base size of form labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Feb 21, 2024
1 parent 06b7ec2 commit 126634a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/ts/Components/FormElement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { classNames } from "../utils/classNames";

export type LabelPosition = "top" | "left" | "right";

type LabelSize = "base" | "lg" | "xl";
type LabelSize = "sm" | "base" | "lg" | "xl";

type WrapperProps = {
labelPosition?: LabelPosition;
Expand Down Expand Up @@ -76,7 +76,7 @@ type Props = {
export const FormElement = ({
label,
labelPosition = "top",
labelSize = "base",
labelSize = "sm",
component,
error,
info,
Expand Down

0 comments on commit 126634a

Please sign in to comment.