type Props = JSX.IntrinsicElements["a"];
export const Link = (props: Props) => {
return <a {...props} />;
};