Skip to content

Commit eae6c2e

Browse files
Merge pull request #1430 from indevi/sync
Add SyncAltIcon
2 parents e3df410 + 394f05a commit eae6c2e

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

src/icons/SyncAlt/SyncAltIcon.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const SyncAltIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
title,
9+
...props
10+
}: IconProps): JSX.Element => {
11+
return (
12+
<svg
13+
width={width}
14+
height={height}
15+
xmlns="http://www.w3.org/2000/svg"
16+
viewBox="0 0 24 24"
17+
role="img"
18+
{...props}
19+
>
20+
{title && <title>{title}</title>}
21+
<path
22+
d="m18 12 4-4-4-4v3H3v2h15zM6 12l-4 4 4 4v-3h15v-2H6z"
23+
fill={fill}
24+
/>
25+
</svg>
26+
);
27+
};
28+
export default SyncAltIcon;
29+

src/icons/SyncAlt/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as SyncAltIcon } from './SyncAltIcon';

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ export * from './Star';
155155
export * from './Success';
156156
export * from './SupervisedUserCircle';
157157
export * from './SwapVert';
158+
export * from './SyncAlt';
158159
export * from './TableView';
159160
export * from './TachographDigital';
160161
export * from './Tachometer';

0 commit comments

Comments
 (0)