import * as React from "react"; import styled from "styled-components"; type Props = { onClick?: React.MouseEventHandler; }; const ButtonLink: React.FC = React.forwardRef( (props: Props, ref: React.Ref) => { return