import * as React from "react"; import styled from "styled-components"; type Props = { onClick: React.MouseEventHandler; children: React.ReactNode; }; export default function ButtonLink(props: Props) { return