Skip to content

Commit

Permalink
Merge pull request #933 from r4m/next
Browse files Browse the repository at this point in the history
Add icon for scheduling events
  • Loading branch information
dbalas authored Dec 19, 2023
2 parents ac33682 + 92e7c4d commit fc7a6e2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/general/Icon/Icon.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ import Chat from './icons/Chat';
import ChatFilled from './icons/ChatFilled';
import Send from './icons/Send';
import ScheduleSend from './icons/ScheduleSend';
import ScheduleEvents from './icons/actions/ScheduleEvents';
import EmptyAvatar from './icons/EmptyAvatar';
import DraggableSort from './icons/DraggableSort';
import FileDownload from './icons/FileDownload';
Expand Down Expand Up @@ -858,6 +859,7 @@ export const ICONS = {
starsCircle: StarsCircle,
send: Send,
scheduleSend: ScheduleSend,
scheduleEvents: ScheduleEvents,
//Editor
bold: Bold,
italic: Italic,
Expand Down
1 change: 1 addition & 0 deletions src/components/general/Icon/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,7 @@ import Icon from './IconWithTooltip';
<Icon name="chatFilled" />
<Icon name="send" />
<Icon name="scheduleSend" />
<Icon name="scheduleEvents" />
<Icon name="emptyAvatar" />
<Icon name="draggableSort" />
<Icon name="fileDownload" />
Expand Down
15 changes: 15 additions & 0 deletions src/components/general/Icon/icons/actions/ScheduleEvents.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react';

function ScheduleEvents({ color = '#788590', ...props }) {
return (
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<path
fill={color}
d="M5 22c-.55 0-1.02-.196-1.413-.587A1.926 1.926 0 0 1 3 20V6c0-.55.196-1.02.587-1.412A1.926 1.926 0 0 1 5 4h1V2h2v2h8V2h2v2h1c.55 0 1.02.196 1.413.588.391.391.587.862.587 1.412v5.675a6.922 6.922 0 0 0-2-.6V10H5v10h6.3c.117.367.254.717.412 1.05.159.333.346.65.563.95H5Zm13 1c-1.383 0-2.563-.488-3.537-1.462C13.488 20.562 13 19.383 13 18s.488-2.563 1.463-3.537C15.438 13.488 16.617 13 18 13s2.563.488 3.538 1.463C22.512 15.438 23 16.617 23 18s-.488 2.563-1.462 3.538C20.562 22.512 19.383 23 18 23Zm1.675-2.625.7-.7L18.5 17.8V15h-1v3.2l2.175 2.175Z"
/>
</svg>
);
}


export default ScheduleEvents;

0 comments on commit fc7a6e2

Please sign in to comment.