@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
30 lines (29 loc) • 1.88 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 GraphDonutAddIcon = ({ width = 24, height = 24, hidden = false, title = 'Graph Donut Add', } = {}) => {
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="M3.42 11.408a15.991 15.991 0 0011.993 22.369.513.513 0 00.587-.506v-.791a11.936 11.936 0 01-1.168-7.187 7.922 7.922 0 01-4.5-9.567.485.485 0 00-.192-.551L4.168 11.2a.514.514 0 00-.748.208zm9.539.418a8.044 8.044 0 012.689-1.443A.486.486 0 0016 9.92V2.729a.514.514 0 00-.588-.506A15.977 15.977 0 006.3 7.111a.511.511 0 00.1.767l5.987 3.982a.484.484 0 00.572-.034zm12.355 3.003a12.044 12.044 0 018.633 2.024 15.988 15.988 0 00-13.36-14.631.513.513 0 00-.587.507v7.188a.488.488 0 00.354.465 8.013 8.013 0 014.96 4.447zM27 35.9a8.9 8.9 0 10-8.9-8.9 8.9 8.9 0 008.9 8.9zm-5-9.4a.5.5 0 01.5-.5H26v-3.5a.5.5 0 01.5-.5h1a.5.5 0 01.5.5V26h3.5a.5.5 0 01.5.5v1a.5.5 0 01-.5.5H28v3.5a.5.5 0 01-.5.5h-1a.5.5 0 01-.5-.5V28h-3.5a.5.5 0 01-.5-.5z"
/>
</svg>`;
};
//# sourceMappingURL=GraphDonutAdd.js.map