import React from "react"; import { SectionId } from "../domain"; export function SectionIdIcon({ section_id, size = 28, title, }: { section_id: SectionId; size?: number; title?: string; }): JSX.Element { return (
); }