import * as React from 'react'; export interface BulletedItemProps { bulletColor: string; title: string; description: string; height?: number; } export const BulletedItem = (props: BulletedItemProps) => { const minHeight = props.height || 150; return (
{props.title}
{props.description}
); };