@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
57 lines (56 loc) • 2.98 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 RadialGradientIcon = ({ width = 24, height = 24, hidden = false, title = 'Radial Gradient', } = {}) => {
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="M18 12.356A5.644 5.644 0 1023.644 18 5.644 5.644 0 0018 12.356z" opacity=".07" />
<path
d="M18 10.669A7.331 7.331 0 1025.331 18 7.331 7.331 0 0018 10.669zm0 12.975A5.644 5.644 0 1123.644 18 5.644 5.644 0 0118 23.644z"
opacity=".18"
/>
<path
d="M18 8.909A9.091 9.091 0 1027.091 18 9.091 9.091 0 0018 8.909zm0 16.422A7.331 7.331 0 1125.331 18 7.331 7.331 0 0118 25.331z"
opacity=".28"
/>
<path
d="M18 7.091A10.909 10.909 0 1028.909 18 10.909 10.909 0 0018 7.091zm0 20A9.091 9.091 0 1127.091 18 9.091 9.091 0 0118 27.091z"
opacity=".38"
/>
<path
d="M18 5.273A12.727 12.727 0 1030.727 18 12.727 12.727 0 0018 5.273zm0 23.636A10.909 10.909 0 1128.909 18 10.909 10.909 0 0118 28.909z"
opacity=".5"
/>
<path
d="M14.1 32h7.8A14.551 14.551 0 0032 21.9v-7.8A14.551 14.551 0 0021.9 4h-7.8A14.551 14.551 0 004 14.1v7.8A14.551 14.551 0 0014.1 32zM18 5.273A12.727 12.727 0 115.273 18 12.727 12.727 0 0118 5.273z"
opacity=".6"
/>
<path
d="M14.1 4H9.56A16.413 16.413 0 004 9.56v4.54A14.551 14.551 0 0114.1 4zm7.8 28h4.536A16.4 16.4 0 0032 26.439V21.9A14.551 14.551 0 0121.9 32zM4 21.9v4.535A16.4 16.4 0 009.561 32H14.1A14.551 14.551 0 014 21.9zm28-7.8V9.56A16.413 16.413 0 0026.44 4H21.9A14.551 14.551 0 0132 14.1z"
/>
<path
d="M26.439 32H29.6a18.172 18.172 0 002.4-2.4v-3.161A16.4 16.4 0 0126.439 32zM9.56 4H6.4A18.172 18.172 0 004 6.4v3.16A16.413 16.413 0 019.56 4zM4 26.439V29.6A18.172 18.172 0 006.4 32h3.161A16.4 16.4 0 014 26.439zM32 9.56V6.4A18.172 18.172 0 0029.6 4h-3.16A16.413 16.413 0 0132 9.56z"
/>
<path
d="M33 2H3a1 1 0 00-1 1v30a1 1 0 001 1h30a1 1 0 001-1V3a1 1 0 00-1-1zm-1 27.6a18.172 18.172 0 01-2.4 2.4H6.4A18.172 18.172 0 014 29.6V6.4A18.172 18.172 0 016.4 4h23.2A18.172 18.172 0 0132 6.4z"
/>
</svg>`;
};
//# sourceMappingURL=RadialGradient.js.map