mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-04-19 04:56:17 +00:00
6 lines
253 B
TypeScript
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} />;
|