/** @jsx jsx */
import React from "react";
import { jsx } from "theme-ui";
import { Styled } from "theme-ui";
function LinkButton({ children, href, forwardedRef, ...props }) {
return (
{children}
);
}
export default React.forwardRef((props, ref) => (
));