@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.55 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 TestProfileIcon = ({ width = 24, height = 24, hidden = false, title = 'Test Profile', } = {}) => {
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="M35.338 32.3L23.864 20.824a12.012 12.012 0 10-3.04 3.04L32.3 35.338a2.155 2.155 0 003.04-3.04zM4 14a10 10 0 1117.8 6.192c-.5-1.344-1.816-2.977-4.956-3.3a.777.777 0 01-.673-.78V14.99a.78.78 0 01.2-.5 5.949 5.949 0 001.353-3.71c0-2.808-1.489-4.377-3.74-4.377S10.2 8.031 10.2 10.777a6.008 6.008 0 001.417 3.71.779.779 0 01.2.5v1.121a.774.774 0 01-.675.781c-3.2.278-4.481 1.9-4.962 3.265A9.91 9.91 0 014 14z"
/>
</svg>`;
};
//# sourceMappingURL=TestProfile.js.map