Skip to content

Commit

Permalink
feat: added repeat exception icon
Browse files Browse the repository at this point in the history
refs: (#97)
  • Loading branch information
giuliano176 authored Jul 26, 2022
1 parent 89ef4fc commit b90439e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/icons/fill/RepeatException.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import * as React from 'react';

function SvgRepeatException(props) {
return (
<svg width={24} height={24} xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M6.09 19h12l-1.3 1.29a1.004 1.004 0 101.42 1.42l3-3a1.002 1.002 0 000-1.42l-3-3a1.002 1.002 0 00-1.639.325 1 1 0 00.219 1.095l1.3 1.29h-12a1.559 1.559 0 01-1.59-1.53V13a1 1 0 10-2 0v2.47A3.56 3.56 0 006.09 19zM5.79 9.71a1.004 1.004 0 001.42-1.42L5.91 7h12a1.56 1.56 0 011.59 1.53V11a1 1 0 102 0V8.53A3.56 3.56 0 0017.91 5h-12l1.3-1.29a1 1 0 000-1.42 1 1 0 00-1.42 0l-3 3a1 1 0 000 1.42l3 3z" />
<path d="M12 16a1 1 0 100-2 1 1 0 000 2zM12 8c-.265 0-.52.088-.707.244a.77.77 0 00-.293.59v3.333a.77.77 0 00.293.589c.187.156.442.244.707.244.265 0 .52-.088.707-.244a.77.77 0 00.293-.59V8.834a.77.77 0 00-.293-.589A1.11 1.11 0 0012 8z" />
</svg>
);
}

export default SvgRepeatException;
1 change: 1 addition & 0 deletions src/icons/fill/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ export { default as ReadReceipt } from './ReadReceipt';
export { default as Recording } from './Recording';
export { default as Refresh } from './Refresh';
export { default as Repeat } from './Repeat';
export { default as RepeatException } from './RepeatException';
export { default as ReplyAll } from './ReplyAll';
export { default as Restore } from './Restore';
export { default as RewindLeft } from './RewindLeft';
Expand Down

0 comments on commit b90439e

Please sign in to comment.