From 4a5a36a0df32cbfd28a690d6c766ce628e64b2ce Mon Sep 17 00:00:00 2001 From: abhinav-grd Date: Sun, 26 Sep 2021 13:19:21 +0530 Subject: [PATCH] Adds new icons --- src/components/icons/SortIcon.tsx | 20 ++++++++++++++++++++ src/components/icons/TickIcon.tsx | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 src/components/icons/SortIcon.tsx create mode 100644 src/components/icons/TickIcon.tsx diff --git a/src/components/icons/SortIcon.tsx b/src/components/icons/SortIcon.tsx new file mode 100644 index 000000000..07c2c0460 --- /dev/null +++ b/src/components/icons/SortIcon.tsx @@ -0,0 +1,20 @@ +import React from 'react'; + +export default function SortIcon(props) { + return ( + + + + + ); +} + +SortIcon.defaultProps = { + height: 24, + width: 24, + viewBox: '0 0 24 24', +}; diff --git a/src/components/icons/TickIcon.tsx b/src/components/icons/TickIcon.tsx new file mode 100644 index 000000000..8bd76968f --- /dev/null +++ b/src/components/icons/TickIcon.tsx @@ -0,0 +1,20 @@ +import React from 'react'; + +export default function TickIcon(props) { + return ( + + + + ); +} + +TickIcon.defaultProps = { + height: 28, + width: 20, + viewBox: '0 0 24 24', +};