| import { Button } from '@automattic/components'; | |
| import clsx from 'clsx'; | |
| import { PanelCard, PanelCardDescription, PanelCardHeading } from 'calypso/components/panel'; | |
| export default function AdministrationToolCard( props ) { | |
| const { description, href, isWarning, onClick, title } = props; | |
| return ( | |
| <PanelCard> | |
| <PanelCardHeading>{ title }</PanelCardHeading> | |
| <PanelCardDescription>{ description }</PanelCardDescription> | |
| <Button href={ href } onClick={ onClick } className={ clsx( { 'is-scary': isWarning } ) }> | |
| { title } | |
| </Button> | |
| </PanelCard> | |
| ); | |
| } | |