This is just a technology testing project based on Create React App and TailwindCSS
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12 lines
425B

  1. import React from 'react'
  2. function Link(props) {
  3. const { action, children, className, ...rest } = props
  4. const classNames = ['text-primary-700 cursor-pointer hover:underline rounded-md outline-none focus:outline-none focus:shadow-outline', className].join(' ');
  5. return (
  6. <button type="button" tabIndex="0" onClick={action} className={classNames} {...rest}>{children}</button>
  7. )
  8. }
  9. export default Link