Skip to content

Commit

Permalink
update property type
Browse files Browse the repository at this point in the history
  • Loading branch information
SerhiiTsybulskyi committed Jul 8, 2024
1 parent 4bfcba0 commit 7f24c59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/form/Checkbox/CheckboxLabel.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React, { FC } from 'react';
import React, { FC, ReactNode } from 'react';
import { twMerge } from 'tailwind-merge';
import { CheckboxTheme } from './CheckboxTheme';

interface CheckboxLabelProps {
label: string;
label: string | ReactNode;
size: 'small' | 'medium' | 'large' | string;
disabled?: boolean;
checked?: boolean;
Expand Down

0 comments on commit 7f24c59

Please sign in to comment.