import React, { CSSProperties } from 'react'; interface ITorchOffProps { onClick: () => void; className?: string; style?: CSSProperties; } export default function TorchOff(props: ITorchOffProps) { const { onClick, className, style } = props; return ( ); }