Files
shlink-web-client/shlink-frontend-kit/src/form/Checkbox.tsx
2023-08-03 09:13:10 +02:00

6 lines
253 B
TypeScript

import type { FC } from 'react';
import type { BooleanControlProps } from './BooleanControl';
import { BooleanControl } from './BooleanControl';
export const Checkbox: FC<BooleanControlProps> = (props) => <BooleanControl type="checkbox" {...props} />;