@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.02 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 UserEditIcon = ({ width = 24, height = 24, hidden = false, title = 'User Edit', } = {}) => {
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.631 21.88l-3.506-3.506a.739.739 0 00-.527-.215h-.023a.834.834 0 00-.564.247L20.189 29.229a.607.607 0 00-.153.256l-2.027 6c-.069.229.279.517.476.517a.313.313 0 00.037 0c.168-.039 5.123-1.764 6-2.028a.6.6 0 00.252-.151L35.6 22.994a.836.836 0 00.246-.537.743.743 0 00-.215-.577zm-11.6 10.963c-1.314.395-3.3 1.229-4.431 1.568l1.56-4.431zm-6.256-5.221a3.835 3.835 0 01.891-1.4l5.765-5.764a13.934 13.934 0 00-4.255-1 1.431 1.431 0 01-1.248-1.444c0-.721.043-1.016.084-2.116a1.441 1.441 0 01.366-.93 10.775 10.775 0 001.962-3.678 9.908 9.908 0 00.577-3.146 10.792 10.792 0 00-.517-3.43A6.358 6.358 0 0014.961 0a6.8 6.8 0 00-4.05 1.229 6.031 6.031 0 00-1.3 1.33A9.022 9.022 0 007.963 8.1a9.448 9.448 0 00.276 2.133 10.971 10.971 0 002.261 4.774 1.444 1.444 0 01.367.93c.031.837.083 1.466.083 2.032a1.431 1.431 0 01-1.25 1.444c-8.366.728-9.673 6.45-9.673 8.707 0 .251.048 1.526.048 1.526h16.889z"
/>
</svg>`;
};
//# sourceMappingURL=UserEdit.js.map