@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.64 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 ThumbUpOutlineIcon = ({ width = 24, height = 24, hidden = false, title = 'Thumb Up Outline', } = {}) => {
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="M29.844 12.008l-6.55.01a21.474 21.474 0 00.8-6.08C24.023 3.814 22.547 2 20.921 2a3.327 3.327 0 00-3.281 3.164c-.471 4.555-5.253 8.263-7.768 9.373A.99.99 0 009 14H3a1 1 0 00-1 1v16a1 1 0 001 1h6a1 1 0 001-1v-1h14.444a4.636 4.636 0 004.126-2.423L32.554 16.3a3 3 0 00-2.71-4.292zm.9 3.424l-4.012 11.356a1.842 1.842 0 01-1.742 1.232L10 28V16.6c2.867-1.153 9.15-5.525 9.64-11.4A1.374 1.374 0 0120.921 4c.61 0 1.121.742 1.173 1.938A15.049 15.049 0 0120.348 14h9.5a1 1 0 01.901 1.432zM25.458 30z"
/>
</svg>`;
};
//# sourceMappingURL=ThumbUpOutline.js.map