IconPresence.tsx27 lines · main
1// DO NOT EDIT
2// @ts-ignore
3import IconBase from './../../IconBase'
4
5const SvgComponent = () => (
6 <>
7 <path
8 stroke="currentColor"
9 strokeLinejoin="round"
10 strokeMiterlimit={10}
11 d="m23.149 23.499 3.424 7.83a.5.5 0 0 0 .942-.074l.74-2.868a.5.5 0 0 1 .364-.36l3.039-.756a.5.5 0 0 0 .08-.943l-7.93-3.487a.5.5 0 0 0-.66.658Z"
12 />
13 <path
14 stroke="currentColor"
15 strokeLinejoin="round"
16 strokeMiterlimit={10}
17 d="M24.544 32.746h-5.623a3 3 0 0 1-3-3V18.5a3 3 0 0 1 3-3h11.247a3 3 0 0 1 3 3v5.623"
18 opacity={0.45}
19 />
20 </>
21)
22
23function IconPresence(props: any) {
24 return <IconBase src={<SvgComponent />} viewBox="12.5 12 24 24" {...props} />
25}
26
27export default IconPresence