Skip to content

Commit

Permalink
fix label props
Browse files Browse the repository at this point in the history
  • Loading branch information
fibo committed Jul 28, 2024
1 parent 8d8d480 commit 2dfe71c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/react.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
ButtonHTMLAttributes,
HTMLAttributes,
InputHTMLAttributes,
LabelHTMLAttributes,
OptionHTMLAttributes,
ProgressHTMLAttributes,
SelectHTMLAttributes,
Expand Down Expand Up @@ -1425,7 +1426,7 @@ export const Label: FC<PropsWithChildren<LabelProps>> = ({
{children}
</label>
)
export type LabelProps = HTMLAttributes<HTMLLabelElement> & BulmaProp
export type LabelProps = LabelHTMLAttributes<HTMLLabelElement> & BulmaProp

/**
* The famous media object prevalent in social media interfaces.
Expand Down

0 comments on commit 2dfe71c

Please sign in to comment.