UNPKG

@pubsweet/ui

Version:

React component library for use in pubsweet apps

17 lines (14 loc) 306 B
import React from 'react' import { Button } from '../atoms' const PlainButton = ({ className, children, type, disabled, onClick }) => ( <Button className={className} disabled={disabled} onClick={onClick} plain type={type} > {children} </Button> ) export default PlainButton