import { ReactNode, CSSProperties } from "react"; interface Props { href: string; children?: ReactNode; style?: CSSProperties; } export default function A({ href, children, style }: Props) { return ( {children} ); }