UNPKG

@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

33 lines (32 loc) 1.78 kB
/* 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 UserLockIcon = ({ width = 24, height = 24, hidden = false, title = 'User Lock', } = {}) => { 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="M14 25.013a2.737 2.737 0 011.833-2.86c0-3.219 2.049-4.882 3.108-5.964a10.942 10.942 0 002.939-7.736c0-5.2-2.756-8.1-6.919-8.1s-7 3.018-7 8.1a11.121 11.121 0 002.622 6.866 1.443 1.443 0 01.367.93v2.074a1.431 1.431 0 01-1.25 1.444C1.338 20.5.031 26.217.031 28.474.031 28.725 0 30 0 30h14z" /> <path d="M32.987 24.013l-1 .038v-.718a7.205 7.205 0 00-6.567-7.323 6.94 6.94 0 00-7.313 6.93v1.111l-1.094-.039a1 1 0 00-1.012 1V35a1 1 0 001 1H33a1 1 0 001-1v-9.987a1 1 0 00-1.013-1zM20.882 22.94a4.164 4.164 0 118.328 0v1.111h-8.328zm5.552 8.482v1.928a.694.694 0 01-.694.694h-1.388a.694.694 0 01-.694-.694v-1.928a2.082 2.082 0 112.776 0z" /> </svg>`; }; //# sourceMappingURL=UserLock.js.map