@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
39 lines (38 loc) • 2.25 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 GlobeStrikeIcon = ({ width = 24, height = 24, hidden = false, title = 'Globe Strike', } = {}) => {
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="M7.146 13.769a6.06 6.06 0 01-.21-1.883L4.509 9.458A16.017 16.017 0 002 18c0 9.112 7.943 14.542 13.554 15.732a6.889 6.889 0 001.046.168c2-5.1-1.772-10.789-4.263-14.494-2.074-3.088-3.959-1.179-5.191-5.637zM18.249 34c.478-.013 2-.165 2.311-.216a15.607 15.607 0 005.959-2.316l-3.086-3.086A17.565 17.565 0 0118.249 34zm14.532-14.969c-1.611-.613-2.992 1.475-3.114-4.164a5.766 5.766 0 011.666-4 3.1 3.1 0 01.73-.349c-.192-.349-.4-.684-.62-1.018-.037.019-.07.044-.109.062-1.25.583-1.423.755-2 0a1.576 1.576 0 01.347-2.326 15.984 15.984 0 00-11.655-5.221c2.027.028 4.446 1.53 3.213 3.929.186-.381-4.027-1.29-4.6-1.29-.772 0 1.575-2.889 1.36-2.639a16.085 16.085 0 00-6.615 1.423c1.094.706 2.311.46 3.544.764a3.014 3.014 0 011.1.452 3.711 3.711 0 00-1.1-.452c-1.818-.211.88 4.777.777 4.114.5-2.292 3.612-3.176 4.565-.147a3.742 3.742 0 01-.837 2.265 10.193 10.193 0 00-1.314 2.737l13.336 13.335a15.869 15.869 0 002.48-7.123 2.393 2.393 0 01-1.154-.352z"
/>
<rect
height="42.243"
rx=".509"
ry=".509"
transform="rotate(-45 18.065 18.065)"
width="3"
x="16.565"
y="-3.056"
/>
</svg>`;
};
//# sourceMappingURL=GlobeStrike.js.map