ultisuite-client/components/suite/agenda-mark.tsx
R3D347HR4Y b61e1a1441
Some checks are pending
E2E / Playwright e2e (push) Waiting to run
refactor: simplify agenda icon usage across components
- Removed dark mode icon references for the agenda in landing-data, favorite-apps, and suite-app-splash files.
- Consolidated agenda icon handling in agenda-mark component to use a single light icon, improving code maintainability and reducing redundancy.
2026-06-19 22:17:59 +02:00

23 lines
418 B
TypeScript

import { suitePublicAsset } from "@/lib/suite/suite-public-asset"
import { cn } from "@/lib/utils"
const AGENDA_MARK = suitePublicAsset("/agenda-mark.svg")
export function AgendaMark({
className,
alt = "",
}: {
className?: string
alt?: string
}) {
return (
<img
src={AGENDA_MARK}
alt={alt}
className={cn(className)}
draggable={false}
aria-hidden={alt === ""}
/>
)
}