// Inline icons (Lucide, MIT) as SVG strings — comment cards are rendered in JS
// (innerHTML), so no Astro component here. Monochrome (stroke = currentColor) →
// they inherit the button's color.
const svg = (inner: string) =>
``;
export const ICONS = {
check: svg(''),
reopen: svg(''),
pause: svg(''),
play: svg(''),
reply: svg(''),
edit: svg(''),
trash: svg(
'',
),
};