import classNames from 'classnames'; import { Checkmark } from '@launch/svg'; export const Card = ({ image, heading, name, description, selected, onClick, lock, }) => { return (
{ if (['Enter', 'Space', ' '].includes(e.key)) { if (!lock) onClick(); } }} onClick={() => { if (!lock) onClick(); }}>
{name} {lock && ( )}
{(lock || selected) && }
{image ? (
) : (
)}
{heading}
{description}
); };