@gpa-gemstone/react-forms
Version:
React Form modules for gpa webapps
13 lines (12 loc) • 399 B
TypeScript
import * as React from 'react';
import { Gemstone } from '@gpa-gemstone/application-typings';
interface IProps<T> extends Gemstone.TSX.Interfaces.IBaseFormProps<T> {
/**
* CSS styles to apply to the form group
* @type {React.CSSProperties}
* @optional
*/
Style?: React.CSSProperties;
}
export default function ToggleSwitch<T>(props: IProps<T>): JSX.Element;
export {};