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', +};