Repository URL to install this package:
| 
      
        
        
        Version: 
        
         
          
          0.14.1  ▾
        
         | 
import React from 'react'
import { ButtonProps, ButtonState } from 'atoms/Button'
import { StyledTertiaryButton } from './styled'
class TertiaryButton extends React.PureComponent<ButtonProps, ButtonState> {
  static defaultProps = {
    breedType: 'text',
    text: 'Cancel Order',
    role: 'button',
    'aria-label': 'button',
    'aria-pressed': false,
  }
  render() {
    const { breedType, text, ...remainingProps } = this.props
    return (
      <StyledTertiaryButton
        breedType={breedType}
        text={text}
        {...remainingProps}
      />
    )
  }
}
export { TertiaryButton }
export default TertiaryButton