import * as React from 'react'; import { cn } from '@/lib/utils'; interface Props { className?: string; } /** * Altis triangle mark. Stroke is `currentColor` so consumers control * tone via `text-*` classes; default ships as the dark grey that * matches assets/altis-mark-bw.svg. Inlined so it can pick up * className-driven sizing without an HTTP round-trip for a 200-byte * glyph. */ export function AltisMark( { className }: Props ) { return ( ); }