mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-26 11:21:30 +01:00
Tailwind, Prettier, ESLint, Typescript runner!
This commit is contained in:
8
src/components/Button.tsx
Normal file
8
src/components/Button.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import classnames from 'classnames';
|
||||
import { ButtonHTMLAttributes } from 'react';
|
||||
|
||||
export function Button({ className, ...props }: ButtonHTMLAttributes<HTMLButtonElement>) {
|
||||
return (
|
||||
<button className={classnames(className, 'bg-blue-600 h-10 px-5 rounded-lg')} {...props} />
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user