summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/checkbox.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/forms/checkbox.tsx')
-rw-r--r--src/components/atoms/forms/checkbox.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/atoms/forms/checkbox.tsx b/src/components/atoms/forms/checkbox.tsx
index 8babcc8..aec97f0 100644
--- a/src/components/atoms/forms/checkbox.tsx
+++ b/src/components/atoms/forms/checkbox.tsx
@@ -1,4 +1,4 @@
-import { SetStateAction, VFC } from 'react';
+import { FC, SetStateAction } from 'react';
export type CheckboxProps = {
/**
@@ -32,7 +32,7 @@ export type CheckboxProps = {
*
* Render a checkbox type input.
*/
-const Checkbox: VFC<CheckboxProps> = ({ value, setValue, ...props }) => {
+const Checkbox: FC<CheckboxProps> = ({ value, setValue, ...props }) => {
return (
<input
type="checkbox"