This is just a technology testing project based on Create React App and TailwindCSS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 lines
440B

  1. import React from 'react'
  2. function ButtonSecondary(props) {
  3. const {type, text, action, disabled} = props
  4. return <>
  5. <button
  6. type={type||'button'}
  7. className="btn-secondary"
  8. onClick={action}
  9. disabled={disabled}
  10. >
  11. <div className="sm:text-lg flex-grow text-center px-2">{text||'primary Button'}</div>
  12. </button>
  13. </>
  14. }
  15. export default ButtonSecondary