mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-04-19 13:06:22 +00:00
First shlink-frontend-kit iteration
This commit is contained in:
5
shlink-frontend-kit/src/form/Checkbox.tsx
Normal file
5
shlink-frontend-kit/src/form/Checkbox.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import type { FC } from 'react';
|
||||
import type { BooleanControlProps } from './BooleanControl';
|
||||
import { BooleanControl } from './BooleanControl';
|
||||
|
||||
export const Checkbox: FC<BooleanControlProps> = (props) => <BooleanControl type="checkbox" {...props} />;
|
||||
Reference in New Issue
Block a user