UNPKG

@strawbinary-io/api-video-strapi-5-plugin

Version:

A powerful Strapi plugin to easily manage your videos and integrate them in your project

12 lines (11 loc) 289 B
import React, { FC } from 'react'; interface IToggleProps { label?: string; required?: boolean; checked?: boolean; onLabel?: string; offLabel?: string; onChange?: (e: React.ChangeEvent<any>) => void; } declare const Toggle: FC<IToggleProps>; export default Toggle;