@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.81 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 FastIcon = ({ width = 24, height = 24, hidden = false, title = 'Fast' } = {}) => {
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="M27.909 13.432a4.729 4.729 0 00-1.052-.043L18.516 5.9a6.888 6.888 0 00.964 4.637c.808 1.262 3.14 2.7 5.028 3.71a3.178 3.178 0 00-1.227 1.982 3.069 3.069 0 00.1 1.4 13.207 13.207 0 00-5.918-4.129c-5.437-1.488-7.476-.661-8.927-.5a2.748 2.748 0 00.331-1 2.784 2.784 0 10-2.515 2.417l-.283.691C3.225 20.983 7.141 24.1 9.513 25.435c.838.473 3.529 1.535 3.529 1.535l-3.605 2.611A1.849 1.849 0 008.868 32s3.214-1.934 6.579-3.984L20 30a2.141 2.141 0 002.645-.832l-4.766-2.638a249.35 249.35 0 004.4-2.744 8.158 8.158 0 003.338-3.8 4.708 4.708 0 001.161.363c2.242.368 5.551-.681 5.865-2.592s-2.491-3.957-4.734-4.325zM15.481 25.205l-2.995-1.655a6.876 6.876 0 001.691-2.85 52.26 52.26 0 004.773 1.994z"
/>
</svg>`;
};
//# sourceMappingURL=Fast.js.map