import type { SVGAttributes } from 'react';

// DataSBJC mark — three ascending bars (analytics), rendered in currentColor
// so it inherits the sidebar-primary foreground on its indigo tile.
export default function AppLogoIcon(props: SVGAttributes<SVGElement>) {
    return (
        <svg {...props} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
            <rect x="3" y="13" width="4" height="8" rx="1.2" fill="currentColor" />
            <rect x="10" y="8" width="4" height="13" rx="1.2" fill="currentColor" />
            <rect x="17" y="3" width="4" height="18" rx="1.2" fill="currentColor" />
        </svg>
    );
}
