@spectrum-web-components/icons-workflow
Version:
[Spectrum Workflow Icons](https://spectrum.adobe.com/page/icons/) delivered in a flexible template tag so that they can be leveraged across various frameworks. The default export of this package pre-applies the `html` template tag from `lit-html` for ease
33 lines (32 loc) • 2.42 kB
JavaScript
/*
Copyright 2020 Adobe. All rights reserved.
This file is licensed to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
OF ANY KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
*/
import { tag as html } from '../custom-tag.js';
export { setCustomTemplateLiteralTag } from '../custom-tag.js';
export const GraphSunburstIcon = ({ width = 24, height = 24, hidden = false, title = 'Graph Sunburst', } = {}) => {
return html `<svg
xmlns="http://www.w3.org/2000/svg"
height="${height}"
viewBox="0 0 36 36"
width="${width}"
aria-hidden="${hidden ? 'true' : 'false'}"
role="img"
fill="currentColor"
aria-label="${title}"
>
<path
d="M11.006 15.84h3.329a.494.494 0 00.408-.226 4 4 0 011.075-1.076.494.494 0 00.226-.408V10.8a.5.5 0 00-.648-.479 7.988 7.988 0 00-4.87 4.87.5.5 0 00.48.649zm7.755 9.969a8.073 8.073 0 007.252-7.25 7.976 7.976 0 00-5.283-8.223.505.505 0 00-.685.467v3.327a.5.5 0 00.227.411 3.986 3.986 0 11-5.528 5.528.5.5 0 00-.411-.227h-3.326a.5.5 0 00-.467.685 7.976 7.976 0 008.221 5.282z"
/>
<path
d="M20.392 4.248V7.3a.494.494 0 00.384.479 10.017 10.017 0 017.616 9.712 8.916 8.916 0 01-.11 1.323.5.5 0 00.309.542l2.863 1.127a.5.5 0 00.677-.362 13.709 13.709 0 00.261-2.631A14.011 14.011 0 0020.98 3.75a.5.5 0 00-.588.498zM10.018 7.144l.794.794a.492.492 0 00.623.062 11.917 11.917 0 014.208-1.742.493.493 0 00.4-.481V4.6a.5.5 0 00-.59-.5 13.89 13.89 0 00-5.376 2.28.5.5 0 00-.059.764zM4.8 15.84h1.047a.493.493 0 00.48-.4 11.9 11.9 0 011.713-4.049.493.493 0 00-.058-.625l-.774-.774a.5.5 0 00-.769.066A13.909 13.909 0 004.3 15.251a.5.5 0 00.5.589zm2.323 4H4.8a.5.5 0 00-.5.59 14.02 14.02 0 0011.155 11.154.505.505 0 00.59-.5V28.9a.494.494 0 00-.391-.48A10.685 10.685 0 017.6 20.238a.494.494 0 00-.477-.398zm19.8 4.072a10.667 10.667 0 01-6.488 4.506.5.5 0 00-.392.481v2.183a.505.505 0 00.59.5 14.018 14.018 0 009.249-6.3.5.5 0 00-.248-.731l-2.116-.833a.5.5 0 00-.593.195z"
/>
</svg>`;
};
//# sourceMappingURL=GraphSunburst.js.map