import React from 'react'; import './link.styles.scss' import { cn } from '../../util/bem'; interface IProps { id?: string; onClick?: () => void; children?: JSX.Element | JSX.Element[] | string; fontSize?: string; style?: any; } const className = cn('link') export const Link = ({ onClick, children, fontSize, style, id = '' }: IProps) => (

{ children }

);