Buttons
  • ui
  • /
  • buttons
  • /
  • button-1

button-1

  • Vista previa

  • Código

    const Button = () => {
      return (
        <button
          type="button"
          className="bg-black text-gray-300 hover:text-white py-2 px-5 rounded transition-colors"
        >
          Button
        </button>
      );
    };