2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/components/design/IconButton/IconButton.tsx

21 lines
524 B
TypeScript

import classNames from "clsx"
export interface IconButtonProps
extends React.ComponentPropsWithoutRef<"button"> {}
export const IconButton: React.FC<IconButtonProps> = (props) => {
const { children, className, ...rest } = props
return (
<button
className={classNames(
"flex items-center justify-center text-center text-green-800 hover:animate-pulse focus:animate-pulse focus:outline-none dark:text-green-400",
className,
)}
{...rest}
>
{children}
</button>
)
}