// Logotype — SVG fill with Platinum 08 gradient. Unique gradient id per instance.
let __plat08Counter = 0;
function Logotype({ height = 48, dark = false }) {
const id = React.useMemo(() => `plat08_${++__plat08Counter}`, []);
if (dark) {
return (
);
}
return (
);
}
window.Logotype = Logotype;