Skip to content

Commit

Permalink
fix: leading-none (#12908)
Browse files Browse the repository at this point in the history
Co-authored-by: Udit Takkar <[email protected]>
  • Loading branch information
sean-brydon and Udit-takkar authored Dec 21, 2023
1 parent beae1aa commit 9fbb080
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/ui/components/form/inputs/Label.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ export function Label(props: JSX.IntrinsicElements["label"]) {
const { className, ...restProps } = props;
return (
<label
className={classNames("text-default text-emphasis mb-2 block text-sm font-medium", className)}
className={classNames(
"text-default text-emphasis mb-2 block text-sm font-medium leading-none",
className
)}
{...restProps}>
{props.children}
</label>
Expand Down

0 comments on commit 9fbb080

Please sign in to comment.