import React from 'react' import { Icon } from 'UI' import cn from 'classnames' interface IProps { size: number; onClick: () => void; customClasses: string; } export function FullScreenButton({ size = 18, onClick, customClasses }: IProps) { return (
) }