interface IProps { title: string; size: 'big' | 'small'; } const GradientTitle = ({ title, size }: IProps) => { return size === 'big' ? (