import { useState } from 'react'; import { IconProps } from '../../Types/Icon'; const TwoPlayerOppositeLandscape = ({ size, color, active }: IconProps) => { const [isChecked, setIsChecked] = useState(active || false); const handleRadioClick = () => { setIsChecked(!isChecked); }; return (
); }; export default TwoPlayerOppositeLandscape;