Skip to content

Commit c811957

Browse files
authored
updated and added sorting icons (#635)
1 parent 9c1574b commit c811957

File tree

4 files changed

+27
-11
lines changed

4 files changed

+27
-11
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nordcloud/gnui",
33
"description": "Nordcloud Design System - a collection of reusable React components used in Nordcloud's SaaS products",
4-
"version": "8.13.4",
4+
"version": "8.14.0",
55
"license": "MIT",
66
"repository": {
77
"type": "git",

src/components/svgicon/SVGIcon.stories.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,14 @@ import { theme } from "../../index";
700700
</Text>
701701
</FlexContainer>
702702
</CopyToClipboard>
703+
<CopyToClipboard text="sortInactive">
704+
<FlexContainer direction="column">
705+
<SVGIcon name="sortInactive" />
706+
<Text size="xs" mt=".25rem">
707+
sortInactive
708+
</Text>
709+
</FlexContainer>
710+
</CopyToClipboard>
703711
<CopyToClipboard text="recalculate">
704712
<FlexContainer direction="column">
705713
<SVGIcon name="recalculate" />

src/components/svgicon/icons/ui.tsx

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -766,18 +766,26 @@ export const uiIcons = {
766766
),
767767
sortAscending: (
768768
<>
769-
<path d="M18.81644,21.57718H5.18363a.875.875,0,0,1,0-1.75H18.81644a.875.875,0,0,1,0,1.75Z" />
770-
<path d="M18.81644,15.77542H8.18363a.875.875,0,0,1,0-1.75H18.81644a.875.875,0,0,1,0,1.75Z" />
771-
<path d="M18.81644,9.97464H11.18363a.875.875,0,0,1,0-1.75h7.63281a.875.875,0,0,1,0,1.75Z" />
772-
<path d="M18.81644,4.17288H14.18363a.875.875,0,0,1,0-1.75h4.63281a.875.875,0,0,1,0,1.75Z" />
769+
<path d="m18.82,21.7H5.18c-.55,0-1-.45-1-1s.45-1,1-1h13.63c.55,0,1,.45,1,1s-.45,1-1,1Z" />
770+
<path d="m18.82,15.9h-10.63c-.55,0-1-.45-1-1s.45-1,1-1h10.63c.55,0,1,.45,1,1s-.45,1-1,1Z" />
771+
<path d="m18.82,10.1h-7.63c-.55,0-1-.45-1-1s.45-1,1-1h7.63c.55,0,1,.45,1,1s-.45,1-1,1Z" />
772+
<path d="m18.82,4.3h-4.63c-.55,0-1-.45-1-1s.45-1,1-1h4.63c.55,0,1,.45,1,1s-.45,1-1,1Z" />
773773
</>
774774
),
775775
sortDescending: (
776776
<>
777-
<path d="M18.81647,4.17288H5.18366a.875.875,0,0,1,0-1.75H18.81647a.875.875,0,0,1,0,1.75Z" />
778-
<path d="M18.81647,9.97464H8.18366a.875.875,0,0,1,0-1.75H18.81647a.875.875,0,0,1,0,1.75Z" />
779-
<path d="M18.81647,15.77542H11.18366a.875.875,0,0,1,0-1.75h7.63281a.875.875,0,0,1,0,1.75Z" />
780-
<path d="M18.81647,21.57718H14.18366a.875.875,0,0,1,0-1.75h4.63281a.875.875,0,0,1,0,1.75Z" />
777+
<path d="m18.82,4.3H5.18c-.55,0-1-.45-1-1s.45-1,1-1h13.63c.55,0,1,.45,1,1s-.45,1-1,1Z" />
778+
<path d="m18.82,10.1h-10.63c-.55,0-1-.45-1-1s.45-1,1-1h10.63c.55,0,1,.45,1,1s-.45,1-1,1Z" />
779+
<path d="m18.82,15.9h-7.63c-.55,0-1-.45-1-1s.45-1,1-1h7.63c.55,0,1,.45,1,1s-.45,1-1,1Z" />
780+
<path d="m18.82,21.7h-4.63c-.55,0-1-.45-1-1s.45-1,1-1h4.63c.55,0,1,.45,1,1s-.45,1-1,1Z" />
781+
</>
782+
),
783+
sortInactive: (
784+
<>
785+
<path d="m18.82,21.7h-8.52c-.55,0-1-.45-1-1s.45-1,1-1h8.52c.55,0,1,.45,1,1s-.45,1-1,1Z" />
786+
<path d="m18.82,15.9H6.36c-.55,0-1-.45-1-1s.45-1,1-1h12.46c.55,0,1,.45,1,1s-.45,1-1,1Z" />
787+
<path d="m18.82,10.1h-8.52c-.55,0-1-.45-1-1s.45-1,1-1h8.52c.55,0,1,.45,1,1s-.45,1-1,1Z" />
788+
<path d="m18.82,4.3H6.36c-.55,0-1-.45-1-1s.45-1,1-1h12.46c.55,0,1,.45,1,1s-.45,1-1,1Z" />
781789
</>
782790
),
783791
test: (

0 commit comments

Comments
 (0)