Skip to content

Commit f94f9ae

Browse files
Merge pull request #1423 from amnkarn/feature/amnkarn/1413
[Feature] Add ArrowDownward icon
2 parents 4164102 + 2ba84d3 commit f94f9ae

3 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
2+
import { IconProps } from '../types';
3+
4+
export const ArrowDownwardIcon = ({
5+
width = DEFAULT_WIDTH,
6+
height = DEFAULT_HEIGHT,
7+
fill = DEFAULT_FILL_NONE,
8+
...props
9+
}: IconProps): JSX.Element => {
10+
return (
11+
<svg
12+
width={width}
13+
height={height}
14+
xmlns="http://www.w3.org/2000/svg"
15+
viewBox="0 0 24 24"
16+
{...props}
17+
>
18+
<path d="M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" fill={fill} />
19+
</svg>
20+
);
21+
};
22+
23+
export default ArrowDownwardIcon;

src/icons/ArrowDownward/index.ts

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

src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export * from './Alert';
77
export * from './Application';
88
export * from './ArrowBack';
99
export * from './ArrowCompress';
10+
export * from "./ArrowDownward";
1011
export * from './ArrowDropDown';
1112
export * from './ArrowExpand';
1213
export * from './Article';

0 commit comments

Comments
 (0)