forked from nyx/website
1
0
Fork 0
website/src/app/components/LinkBubble.tsx

14 lines
323 B
TypeScript

import { HTMLAttributes } from "react";
export const LinkBubble: React.FC<HTMLAttributes<HTMLDivElement> & { href: string }> = ({
className,
children,
href
}) => {
return (
<a className={`${className} rounded-full flex justify-center items-center`} href={href}>
{children}
</a>
);
};