Strip.jsx
359 B · jsx · 16 lines
1import { Icon } from "./Icon.jsx";23export function Strip({ id, title, href, more, children }) {4 return (5 <div className="strip">6 <h2 id={id}>{title}</h2>7 {children}8 {href ? (9 <a href={href} className="fine">10 {more}11 <Icon name="chevron_right" extra="small" />12 </a>13 ) : null}14 </div>15 );16}