@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.87 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 UsersLockIcon = ({ width = 24, height = 24, hidden = false, title = 'Users 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="M23.683 14.13a7.886 7.886 0 011.843-.118 9.64 9.64 0 011.98.368 12.619 12.619 0 00.886-4.433c0-4.61-2.88-7.923-7.148-7.518a10.914 10.914 0 013 8.066 12.623 12.623 0 01-.561 3.635zM14 25.013a3.005 3.005 0 012.141-2.875 8.929 8.929 0 014.574-6.981 10.908 10.908 0 001.134-4.657c0-5.2-2.756-8.1-6.919-8.1s-7 3.018-7 8.1a11.121 11.121 0 002.622 6.865 1.439 1.439 0 01.367.93v2.074a1.431 1.431 0 01-1.248 1.444C1.307 22.537 0 28.259 0 30.516c0 .25.029 3.237.048 3.484H14z"
/>
<path
d="M33 24h-.955v-1.008a7 7 0 00-14 0V24H17a1 1 0 00-1 1v10a1 1 0 001 1h16a1 1 0 001-1V25a1 1 0 00-1-1zm-6.566 7.422v1.928a.694.694 0 01-.694.694h-1.388a.694.694 0 01-.694-.694v-1.928a2.082 2.082 0 112.776 0zM29.545 24h-9v-1.008a4.5 4.5 0 019 0z"
/>
</svg>`;
};
//# sourceMappingURL=UsersLock.js.map