mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-10 10:17:28 +03:00
4 lines
210 B
TypeScript
4 lines
210 B
TypeScript
import { FC } from 'react';
|
|
import { BooleanControl, BooleanControlProps } from './BooleanControl';
|
|
|
|
export const ToggleSwitch: FC<BooleanControlProps> = (props) => <BooleanControl type="switch" {...props} />;
|