Skip to content

Commit

Permalink
feat: APP-2446 - Add IconSort icon (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgero-eth authored Sep 26, 2023
1 parent ded7db8 commit 19199f4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- `IconSort` icon

## [0.2.16] - 2023-09-22

### Added
Expand Down
15 changes: 15 additions & 0 deletions src/components/icons/interface/icon_sort.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react';
import { type IconType } from '..';

export const IconSort: IconType = ({ height = 16, width = 16, ...props }) => {
return (
<svg width={width} height={height} viewBox="0 0 16 16" fill="none" {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M6 0.000377655C5.77267 0.000377655 5.55465 0.0906835 5.39391 0.251429C5.23316 0.412174 5.14286 0.630192 5.14286 0.857521C5.14286 1.08485 5.23316 1.30287 5.39391 1.46361C5.55465 1.62436 5.77267 1.71466 6 1.71466H8.28571C8.51304 1.71466 8.73106 1.62436 8.89181 1.46361C9.05255 1.30287 9.14286 1.08485 9.14286 0.857521C9.14286 0.630192 9.05255 0.412174 8.89181 0.251429C8.73106 0.0906835 8.51304 0.000377655 8.28571 0.000377655H6ZM3.71429 3.42895C3.48696 3.42895 3.26894 3.51925 3.10819 3.68C2.94745 3.84075 2.85714 4.05876 2.85714 4.28609C2.85714 4.51342 2.94745 4.73144 3.10819 4.89218C3.26894 5.05293 3.48696 5.14323 3.71429 5.14323H8.28571C8.51304 5.14323 8.73106 5.05293 8.89181 4.89218C9.05255 4.73144 9.14286 4.51342 9.14286 4.28609C9.14286 4.05876 9.05255 3.84075 8.89181 3.68C8.73106 3.51925 8.51304 3.42895 8.28571 3.42895H3.71429ZM0 7.71466C0 7.48734 0.0903059 7.26932 0.251051 7.10857C0.411797 6.94783 0.629814 6.85752 0.857143 6.85752H8.28571C8.51304 6.85752 8.73106 6.94783 8.89181 7.10857C9.05255 7.26932 9.14286 7.48734 9.14286 7.71466C9.14286 7.94199 9.05255 8.16001 8.89181 8.32076C8.73106 8.4815 8.51304 8.57181 8.28571 8.57181H0.857143C0.629814 8.57181 0.411797 8.4815 0.251051 8.32076C0.0903059 8.16001 0 7.94199 0 7.71466ZM12.2857 0.000377655C12.5888 0.000377655 12.8795 0.120785 13.0938 0.335113C13.3082 0.54944 13.4286 0.84013 13.4286 1.14323V11.4289H15.1429C15.3123 11.4291 15.4778 11.4794 15.6187 11.5736C15.7595 11.6678 15.8692 11.8017 15.934 11.9582C15.9989 12.1147 16.0158 12.2869 15.9828 12.4531C15.9498 12.6193 15.8683 12.7719 15.7486 12.8918L12.8914 15.7489C12.7307 15.9095 12.5129 15.9996 12.2857 15.9996C12.0586 15.9996 11.8407 15.9095 11.68 15.7489L8.82286 12.8918C8.70314 12.7719 8.62162 12.6193 8.58861 12.4531C8.5556 12.2869 8.57257 12.1147 8.63739 11.9582C8.7022 11.8017 8.81194 11.6678 8.95276 11.5736C9.09358 11.4794 9.25915 11.4291 9.42857 11.4289H11.1429V1.14323C11.1429 0.84013 11.2633 0.54944 11.4776 0.335113C11.6919 0.120785 11.9826 0.000377655 12.2857 0.000377655Z"
fill="currentColor"
/>
</svg>
);
};
1 change: 1 addition & 0 deletions src/components/icons/interface/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export { IconSearch } from './icon_search';
export { IconSettings } from './icon_settings';
export { IconShrink } from './icon_shrink';
export { IconSmartContract } from './icon_smart_contract';
export { IconSort } from './icon_sort';
export { IconSpinner } from './icon_spinner';
export { IconStorage } from './icon_storage';
export { IconSuccess } from './icon_success';
Expand Down

0 comments on commit 19199f4

Please sign in to comment.