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