ToolJet/frontend/src/_ui/Icon/solidIcons/NotificationUnread.jsx
Kiran Ashok 65259afeb2
Feature Homepage and settings redesign (#5763)
* adding colors

* feat :: add button

* feat :: added typography

* feat: init storybook

* removes browserlist

* feat :: adding button styles and button component

* feat :: added sass addon

* stories update

* feat :: replacing with radix colors

* danger variants

* updates buttin story

* fix :: removing default items

* cleanup

* fix icons update

* feat :: folder list component

* fix :: naming

* icon and split button :: init

* intermediate save :: app card component

* renaming

* updates

* update for module imports

* updates icon

* update :: homepage design updates

* design changes dashboard

* updates :: apps section

* workspace stting new design upate

* updates dasboard design

* style :: fixes

* feat :: added context for sidebar nav breadcrumb

* added all solid icons

* intermediate update

* change: conditions for fetching users

* sorybook updates

* design updates :: workspace settings page

* manage users page

* lint fixes

* fix :: styling

* stle fixes :: workspace settings

* homepage redesign

* fix :: all drawer colors and position ,teplate page revamp , database page header fixes

* imported all bulk icons

* svg to jsx : bulk icons

* minor :: cleanup

* fix :: manage users drawer

* fix :: searchboxes , userspage fixes

* fix :: all inputs and minor ui fixes

* database page ui fixes

* fix :: database and folder search functionality and iconlist in homecard

* fixed some db functionality and edge cases for longer texts

* fix :: user addition manage user page

* self review cleanup and change in bulk icon fill state

* fix :: homepage seacbar

* merging develop and resolving conflicts

* remove unwanted stories

* reverting merge with develop

* Revert "reverting merge with develop"

This reverts commit 2150c8ec0c.

* clearing out warnings

* lint fixes

* feat :: added org modal in database page

* fix :: sso loader theme

* fix :: broken styles select

* fixed icon warning and select ui

* fix :: upload bulk and user select dark mode

* merge styles  with develop

* feat :: integrated new ui for database

* removing storybook files

* fix :: all bugs related to users dropdown and cleanup

* fix: user search api for organization page

* cleanup and splitting dropzone component

* fix :: overflow issue in app card time

* fix for scrollbars in homepage

* PR review fixes

* updates :: fix d=global datasource design issues , homepage responsiveness

* tj db operations

* breadcrumb bug fixes

* lint fixes

* removing logs , removed fade in in datasource and database page

* marketplace page ui fix

* removing inital users table fetch

* Pr :: review changes

* remove logs

* fix :: popover bug

* minot style fix

* fix :: remove arrow from all popovers

* fix :: for loading states

* ux :: sidebar items reorder

* style :: fix

* style fix :: templates

* fix :: qa bugs

* fix :: Qa reported bugs

* removes :: folder fetch bug

* share link and datsource bg color fix

* fixes :: rename group ,

* removed logs

* pages popover background fix

* fix :: tj db table addition ui bug

* fix :: ui bug confirm modal password disable

* modal , revert name capitalize in lists, typos fix

* typos , users page route bugfix

* users page header bugfix

* workspace archive btn , datasources form style for select

* groups updated , delete, create flow updated

* avatar bug in profile page fix

* revert styles

* fix :: for create new table nav breadcrumb not being updated

* click state bug fix in avatar

* fix bug with appcard popover

* fix :: text capitalize issue

* fix :: lints and updated icon for filter delete

* fix warnings

---------

Co-authored-by: gandharv <gandharvkumargarg@gmail.com>
Co-authored-by: Vijaykant Yadav <vjy239@gmail.com>
2023-04-21 11:45:48 +05:30

21 lines
1.5 KiB
JavaScript

import React from 'react';
const NotificationUnread = ({ fill = '#C1C8CD', width = '25', className = '', viewBox = '0 0 25 25' }) => (
<svg
className={className}
width={width}
height={width}
viewBox={viewBox}
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M6.72281 18.7893H18.2772C20.1056 18.7893 21.1492 16.9502 20.0522 15.6614C19.5666 15.0909 19.2673 14.4142 19.1867 13.7046L19.0227 12.259C18.8512 12.2789 18.6767 12.2891 18.4999 12.2891C16.0147 12.2891 13.9999 10.2743 13.9999 7.78906C13.9999 6.81819 14.3074 5.91913 14.8303 5.18394C14.8102 5.17686 14.7901 5.16987 14.7699 5.16297V5.05925C14.7699 3.8056 13.7537 2.78931 12.5 2.78931C11.2463 2.78931 10.2301 3.8056 10.2301 5.05925V5.16297C8.08766 5.8965 6.5016 7.63994 6.26046 9.76449L5.81328 13.7046C5.73274 14.4142 5.43344 15.0909 4.94779 15.6614C3.85076 16.9502 4.89443 18.7893 6.72281 18.7893ZM21.5 7.78906C21.5 9.44592 20.1569 10.7891 18.5 10.7891C16.8431 10.7891 15.5 9.44592 15.5 7.78906C15.5 6.13221 16.8431 4.78906 18.5 4.78906C20.1569 4.78906 21.5 6.13221 21.5 7.78906ZM12.5 22.7893C13.8565 22.7893 15.0147 21.9885 15.4721 20.8608C15.4912 20.8138 15.5 20.7633 15.5 20.7126C15.5 20.4787 15.3104 20.2891 15.0765 20.2891H9.92349C9.6896 20.2891 9.5 20.4787 9.5 20.7126C9.5 20.7633 9.50883 20.8138 9.5279 20.8608C9.98528 21.9885 11.1435 22.7893 12.5 22.7893Z"
fill={fill}
/>
</svg>
);
export default NotificationUnread;