project setup
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
interface ButtonProps {
|
||||
text: string;
|
||||
}
|
||||
|
||||
const Button = ({ text }: ButtonProps) => {
|
||||
return (
|
||||
<button className="px-4 py-3 font-mono text-xs sm:text-sm text-white bg-[var(--color-3)] rounded-xl cursor-pointer">
|
||||
{text}
|
||||
</button>
|
||||
);
|
||||
};
|
||||
|
||||
export default Button;
|
||||
Reference in New Issue
Block a user