@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.29 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 SubtractFromSelectionIcon = ({ width = 24, height = 24, hidden = false, title = 'Subtract From Selection', } = {}) => {
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="M24.16 5.443l1.028-1.777a15.947 15.947 0 00-5.4-1.606v2.066a13.883 13.883 0 014.372 1.317zm5.37 4.623l1.8-1.035a16.133 16.133 0 00-3.852-3.97L26.44 6.849a14.066 14.066 0 013.09 3.217zm2.403 6.597H34a15.91 15.91 0 00-1.379-5.291L30.83 12.4a13.9 13.9 0 011.103 4.263zm0 2.674a13.9 13.9 0 01-1.1 4.258l1.791 1.032A15.91 15.91 0 0034 19.337zm-5.493 9.814l1.033 1.788a16.131 16.131 0 003.852-3.97l-1.8-1.035a14.066 14.066 0 01-3.085 3.217zm-6.655 2.723v2.066a15.947 15.947 0 005.4-1.606l-1.025-1.777a13.883 13.883 0 01-4.375 1.317zm-7.247-.98l-1.028 1.777A15.993 15.993 0 0017.107 34v-2.045a13.937 13.937 0 01-4.569-1.061zm-5.799-4.601l-1.8 1.035a16.132 16.132 0 004.214 4.062l1.026-1.775a14.071 14.071 0 01-3.44-3.322zm-2.672-6.956H2a15.9 15.9 0 001.574 5.694L5.365 24a13.889 13.889 0 01-1.298-4.663zM5.365 12l-1.791-1.031A15.9 15.9 0 002 16.663h2.067A13.889 13.889 0 015.365 12zm4.819-5.616L9.158 4.609a16.132 16.132 0 00-4.214 4.062l1.8 1.035a14.073 14.073 0 013.44-3.322zm6.923-2.339V2a15.99 15.99 0 00-5.6 1.329l1.027 1.777a13.937 13.937 0 014.573-1.061zM28 19a1 1 0 01-1 1H9a1 1 0 01-1-1v-2a1 1 0 011-1h18a1 1 0 011 1z"
/>
</svg>`;
};
//# sourceMappingURL=SubtractFromSelection.js.map