@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) • 2.43 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 RangeMaskIcon = ({ width = 24, height = 24, hidden = false, title = 'Range Mask', } = {}) => {
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="M25.949 22.088a10.9 10.9 0 01-.846 3.279l1.776 1.026A12.944 12.944 0 0028 22.088zm-4.28 7.659l1.031 1.781a13.088 13.088 0 003.126-3.228l-1.782-1.028a11.062 11.062 0 01-2.375 2.475zM16.451 31.9v2.07a12.928 12.928 0 004.389-1.307l-1.024-1.773a10.907 10.907 0 01-3.365 1.01zm-5.697-.743l-1.027 1.78a12.981 12.981 0 004.548 1.081v-2.045a10.927 10.927 0 01-3.521-.816zM6.18 27.558L4.392 28.59a13.111 13.111 0 003.424 3.31l1.024-1.778a11.076 11.076 0 01-2.66-2.564zm-2.122-5.47H2a12.947 12.947 0 001.279 4.632l1.782-1.028a10.908 10.908 0 01-1.003-3.604zm1.01-5.775L3.279 15.28A12.947 12.947 0 002 19.912h2.059a10.928 10.928 0 011.009-3.599zm3.78-4.42l-1.032-1.788a13.111 13.111 0 00-3.424 3.305l1.8 1.038a11.085 11.085 0 012.656-2.555zm5.427-1.846V7.982a12.959 12.959 0 00-4.548 1.081l1.037 1.8a10.943 10.943 0 013.511-.816zm21.548-5.789a3.238 3.238 0 00-.913-2.618l-.525-.525A3.206 3.206 0 0032.1.187h-.121a3.734 3.734 0 00-2.5 1.108L25.95 4.822l-1.313-1.313A.89.89 0 0024 3.251a1.037 1.037 0 00-.728.308l-2.36 2.362a.966.966 0 00-.051 1.363l.766.766-11.3 11.3a4.471 4.471 0 006.323 6.323l11.3-11.3.79.791a.894.894 0 00.636.257 1.033 1.033 0 00.728-.308l2.362-2.361a.967.967 0 00.05-1.364L31.2 10.075l3.525-3.526a3.749 3.749 0 001.098-2.291zm-20.591 20a2.471 2.471 0 11-3.494-3.494l11.3-11.3 3.5 3.495z"
/>
</svg>`;
};
//# sourceMappingURL=RangeMask.js.map