# Action Panel This is a larger [`Card` component](../../components/card) that has a title, description, right-aligned figure and call-to-action button. ## Usage ```jsx import { Button } from '@automattic/components'; import ActionPanel from 'calypso/components/action-panel'; import ActionPanelBody from 'calypso/components/action-panel/body'; import ActionPanelCta from 'calypso/components/action-panel/cta'; import ActionPanelFigure from 'calypso/components/action-panel/figure'; import ActionPanelFooter from 'calypso/components/action-panel/footer'; import ActionPanelTitle from 'calypso/components/action-panel/title'; const ActionPanelExample = ( { translate } ) => { return (
WordPress logo Action panel title

This is a description of the action. It gives a bit more detail and explains what we are inviting the user to do.

WordPress logo Action panel with left aligned image

This is a description of the action. It gives a bit more detail and explains what we are inviting the user to do.

); }; ```