import type { ListItemProps } from '~/src/components/ListItem';

import ImageIcon from '~/src/components/Icon/ImageIcon';
import ListItem from '~/src/components/ListItem';

export const CatalogItem = (props: ListItemProps) => (
  <ListItem
    tag="div"
    imageSize="4.5rem"
    fontSize="1.1em"
    lineHeight="1.1em"
    spaceBetweenRows="0.2em"
    subtitleSize="0.7em"
    hideChevron
    FallbackImageIcon={ImageIcon}
    {...props}
  />
);
