openreplay/frontend/app/components/ui/Icons/search_notification.tsx
Delirium 6c058b36d2
fix(ui): split icons from SVG.tsx components (#1787)
* fix(ui): split icons from SVG.tsx components

* fix(ui): split icons from SVG.tsx components

* fix(ui): split icons from SVG.tsx components
2023-12-19 17:35:47 +01:00

19 lines
1.2 KiB
TypeScript

/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Search_notification(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 16 17" width={ `${ width }px` } height={ `${ height }px` } ><path d="M12.59 12.622c-.645-.645-1.447-1.449-1.447-4.586a4.644 4.644 0 0 0-3.879-4.58.929.929 0 1 0-1.528 0 4.644 4.644 0 0 0-3.879 4.58c0 3.137-.802 3.94-1.448 4.586C-.466 13.497.155 15 1.394 15h3.249A1.86 1.86 0 0 0 6.5 16.857 1.86 1.86 0 0 0 8.357 15h3.248c1.238 0 1.862-1.501.985-2.378ZM6.5 15.93A.93.93 0 0 1 5.571 15H7.43a.93.93 0 0 1-.929.929Zm5.105-1.858H1.395a.465.465 0 0 1-.33-.792c1.012-1.011 1.72-2.143 1.72-5.243A3.712 3.712 0 0 1 6.5 4.32a3.712 3.712 0 0 1 3.714 3.715c0 3.088.703 4.226 1.72 5.243a.465.465 0 0 1-.329.792ZM15.84 2.76c.089 0 .161.072.161.16v.161c0 .089-.072.161-.16.161H13.24V5.84c0 .089-.072.161-.16.161h-.161a.161.161 0 0 1-.161-.16V3.24H10.16a.161.161 0 0 1-.161-.16V2.92c0-.089.072-.161.16-.161h2.599V.16c0-.089.072-.161.16-.161h.161c.089 0 .161.072.161.16V2.76h2.598Z"/></svg>
);
}
export default Search_notification;