d146e45e2f
Add a Bun script to apply and normalize AGPL copyright headers across the default frontend source files. The script keeps headers idempotent, upgrades existing headers to the 2023-2026 QuantumNous range, and is exposed through `bun run copyright` for future maintenance.
72 lines
2.1 KiB
TypeScript
Vendored
72 lines
2.1 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
import { type SVGProps } from 'react'
|
|
|
|
export function IconSidebarSidebar(props: SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
data-name='icon-sidebar-sidebar'
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
viewBox='0 0 79.86 51.14'
|
|
{...props}
|
|
>
|
|
<path
|
|
d='M23.42.51h51.99c2.21 0 4 1.79 4 4v42.18c0 2.21-1.79 4-4 4H23.42s-.04-.02-.04-.04V.55s.02-.04.04-.04z'
|
|
opacity={0.2}
|
|
strokeLinecap='round'
|
|
strokeMiterlimit={10}
|
|
/>
|
|
<path
|
|
fill='none'
|
|
opacity={0.72}
|
|
strokeLinecap='round'
|
|
strokeMiterlimit={10}
|
|
strokeWidth='2px'
|
|
d='M5.56 14.88L17.78 14.88'
|
|
/>
|
|
<path
|
|
fill='none'
|
|
opacity={0.48}
|
|
strokeLinecap='round'
|
|
strokeMiterlimit={10}
|
|
strokeWidth='2px'
|
|
d='M5.56 22.09L16.08 22.09'
|
|
/>
|
|
<path
|
|
fill='none'
|
|
opacity={0.55}
|
|
strokeLinecap='round'
|
|
strokeMiterlimit={10}
|
|
strokeWidth='2px'
|
|
d='M5.56 18.38L14.93 18.38'
|
|
/>
|
|
<g strokeLinecap='round' strokeMiterlimit={10}>
|
|
<circle cx={7.51} cy={7.4} r={2.54} opacity={0.8} />
|
|
<path
|
|
fill='none'
|
|
opacity={0.8}
|
|
strokeWidth='2px'
|
|
d='M12.06 6.14L17.78 6.14'
|
|
/>
|
|
<path fill='none' opacity={0.6} d='M11.85 8.79L16.91 8.79' />
|
|
</g>
|
|
</svg>
|
|
)
|
|
}
|