export default function StyledButton(props: any) { if(props.type == "highlight") { return (
{props.children}
) } else { return (
{props.children}
) } }