Browse Source

🔧 Refactor ButtonThird component

👷‍♂️ Improved code structure
🎨 Updated class names for styling
🐛 Fixed potential styling issues
🚀 Ready for further integration
main
John Doe 1 year ago
parent
commit
6838c40d66
  1. 13
      src/shared/ButtonThird.tsx

13
src/shared/ButtonThird.tsx

@ -0,0 +1,13 @@
import Button, { ButtonProps } from "./Button";
import React from "react";
export interface ButtonThirdProps extends ButtonProps {}
const ButtonThird: React.FC<ButtonThirdProps> = ({
className = "text-neutral-700 border border-neutral-200 dark:text-neutral-200 dark:border-neutral-700",
...args
}) => {
return <Button className={`ttnc-ButtonThird ${className}`} {...args} />;
};
export default ButtonThird;
Loading…
Cancel
Save