You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
416 B

  1. import Button, { ButtonProps } from "./Button";
  2. import React from "react";
  3. export interface ButtonThirdProps extends ButtonProps {}
  4. const ButtonThird: React.FC<ButtonThirdProps> = ({
  5. className = "text-neutral-700 border border-neutral-200 dark:text-neutral-200 dark:border-neutral-700",
  6. ...args
  7. }) => {
  8. return <Button className={`ttnc-ButtonThird ${className}`} {...args} />;
  9. };
  10. export default ButtonThird;