@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
34 lines (33 loc) • 1.93 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 DataUserIcon = ({ width = 24, height = 24, hidden = false, title = 'Data User', } = {}) => {
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}"
>
<ellipse cx="18" cy="7" rx="16" ry="5" />
<path
d="M34 28.159V20.27a4.824 4.824 0 01-.867.814 9 9 0 01-1.557 6.188zm-13.686-.948a10.349 10.349 0 01-1.295-2.949c-.354.008-.7.013-1.02.013-4.936 0-14.212-1.169-16-4V29c0 2.282 4.9 4.2 11.588 4.8a8.4 8.4 0 016.727-6.589zm-1.629-5.222v-.062c0-4.724 3-8.023 7.285-8.023a6.822 6.822 0 016.784 5.037A2.551 2.551 0 0034 17v-6.73c-2.447 3.095-11.064 4-16 4s-14.212-1.169-16-4V17c0 2.761 7.163 5 16 5 .231 0 .456-.008.685-.011z"
/>
<path
d="M28.677 28.542v-1.4a.966.966 0 01.246-.623 7.366 7.366 0 001.675-4.6c0-3.479-1.845-5.424-4.633-5.424s-4.686 2.021-4.686 5.424a7.447 7.447 0 001.756 4.6.965.965 0 01.246.623v1.389a.958.958 0 01-.836.967c-5.6.487-6.439 4.319-6.439 5.83L16 36h20v-.667c0-1.448-.989-5.266-6.49-5.825a.963.963 0 01-.833-.966z"
/>
</svg>`;
};
//# sourceMappingURL=DataUser.js.map