type Subheading = 'cloud' | 'studio' | 'services' | 'sports' | 'development';
type Variant = 'mono' | 'standard';
type Props = {
/** Render only the brand mark, no wordmark. @default false */
mark?: boolean;
/** Sub-product name appended after Streams. @default null */
subheading?: Subheading | null;
/**
* Color treatment.
* - `mono`: every path inherits `currentColor`. Compose with the parent's CSS color.
* - `standard`: brand-canonical two-tone — mark in `--sc-kit--color--accent`, wordmark in `--sc-kit--color--text--primary`.
* @default 'mono'
*/
variant?: Variant;
/** Accessible label. @default 'Streams' */
ariaLabel?: string;
};
/**
* Logo — the StreamsCloud brand mark, optionally locked up with the "Streams"
* wordmark and a sub-product name. Renders inline SVG using `currentColor`, so
* the consumer sets color via the parent's CSS `color` property.
*
* Examples:
*