import React from 'react'; import { Stack } from './Stack'; import { Text } from './Text'; interface FeatureListProps { items: string[]; intent?: 'primary' | 'aqua' | 'amber' | 'low'; } /** * FeatureList - A semantic list of features. */ export function FeatureList({ items, intent = 'primary' }: FeatureListProps) { return ( {items.map((item, index) => ( {item} ))} ); }