-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/11837-task-icons' into feature/11772-details-ab…
…out-selected-task
- Loading branch information
Showing
40 changed files
with
244 additions
and
112 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Re-export all icons from @navikt/aksel-icons to make them available for consumers of studio/icons | ||
export * from '@navikt/aksel-icons'; | ||
|
||
export * from './components'; | ||
export * from './types/IconProps'; | ||
export * from './react/icons'; | ||
export * from './react/types'; |
10 changes: 2 additions & 8 deletions
10
...ns/src/components/Accordion/Accordion.tsx → ...tudio-icons/src/react/icons/Accordion.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 2 additions & 8 deletions
10
...cons/src/components/Checkbox/Checkbox.tsx → ...studio-icons/src/react/icons/Checkbox.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
frontend/libs/studio-icons/src/react/icons/ConfirmationTask.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import React from 'react'; | ||
import { IconProps } from '../types'; | ||
import { SvgTemplate } from './SvgTemplate'; | ||
|
||
export const ConfirmationTask = (props: IconProps): JSX.Element => { | ||
return ( | ||
<SvgTemplate {...props}> | ||
<rect | ||
x='3.8222' | ||
y='4.5311' | ||
width='18' | ||
height='15.47' | ||
rx='2' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
/> | ||
<path | ||
d='M7.54221 17.6227H18.1022' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeMiterlimit='2.61533' | ||
strokeLinecap='round' | ||
/> | ||
<path | ||
d='M9.00428 15.4174L9.56043 12.9147L14.2877 8.1874C14.8326 7.64252 15.6913 7.64058 16.2343 8.18742C16.7744 8.73148 16.7764 9.63516 16.2343 10.1773L11.507 14.9046L9.00428 15.4174Z' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeLinejoin='round' | ||
/> | ||
<path | ||
d='M13.4535 8.20169L15.4 10.1482' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeMiterlimit='2.61533' | ||
/> | ||
</SvgTemplate> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import React from 'react'; | ||
import { IconProps } from '../types'; | ||
import { SvgTemplate } from './SvgTemplate'; | ||
|
||
export const DataTask = (props: IconProps): JSX.Element => { | ||
return ( | ||
<SvgTemplate {...props}> | ||
<rect | ||
x='3.4111' | ||
y='4.53186' | ||
width='18' | ||
height='15.4684' | ||
rx='2' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
/> | ||
<rect | ||
x='7.1311' | ||
y='6.96924' | ||
width='10.56' | ||
height='10.5937' | ||
rx='1' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
/> | ||
<path | ||
d='M10.0316 12.2661H14.7905' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeLinecap='round' | ||
/> | ||
<path | ||
d='M10.0316 9.50235H14.7906' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeLinecap='round' | ||
/> | ||
<path | ||
d='M10.367 15.0298H13.9362' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeLinecap='round' | ||
/> | ||
</SvgTemplate> | ||
); | ||
}; |
25 changes: 25 additions & 0 deletions
25
frontend/libs/studio-icons/src/react/icons/FeedbackTask.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from 'react'; | ||
import { IconProps } from '../types'; | ||
import { SvgTemplate } from './SvgTemplate'; | ||
|
||
export const FeedbackTask = (props: IconProps): JSX.Element => { | ||
return ( | ||
<SvgTemplate {...props}> | ||
<rect | ||
x='3.64441' | ||
y='4.5311' | ||
width='18' | ||
height='15.47' | ||
rx='2' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
/> | ||
<path | ||
d='M16.9245 8.11652H8.36429C7.812 8.11652 7.36429 8.56423 7.36429 9.11651V17.2136C7.36429 17.3711 7.54359 17.4614 7.67009 17.3676L9.80619 15.7851C9.97844 15.6575 10.1871 15.5886 10.4015 15.5886L16.9245 15.5886C17.4768 15.5886 17.9245 15.1409 17.9245 14.5886V9.11652C17.9245 8.56423 17.4768 8.11652 16.9245 8.11652Z' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeLinecap='round' | ||
/> | ||
</SvgTemplate> | ||
); | ||
}; |
10 changes: 2 additions & 8 deletions
10
...udio-icons/src/components/Group/Group.tsx → ...bs/studio-icons/src/react/icons/Group.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
10 changes: 2 additions & 8 deletions
10
...io-icons/src/components/Likert/Likert.tsx → ...s/studio-icons/src/react/icons/Likert.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 2 additions & 8 deletions
10
...cons/src/components/LongText/LongText.tsx → ...studio-icons/src/react/icons/LongText.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 2 additions & 8 deletions
10
...io-icons/src/components/NavBar/NavBar.tsx → ...s/studio-icons/src/react/icons/NavBar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 2 additions & 8 deletions
10
...ns/src/components/Paragraph/Paragraph.tsx → ...tudio-icons/src/react/icons/Paragraph.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
frontend/libs/studio-icons/src/react/icons/PaymentTask.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import React from 'react'; | ||
import { IconProps } from '../types'; | ||
import { SvgTemplate } from './SvgTemplate'; | ||
|
||
export const PaymentTask = (props: IconProps): JSX.Element => { | ||
return ( | ||
<SvgTemplate {...props}> | ||
<rect | ||
x='3.23331' | ||
y='4.5311' | ||
width='18' | ||
height='15.47' | ||
rx='2' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
/> | ||
<rect | ||
x='6.95331' | ||
y='8.32443' | ||
width='10.56' | ||
height='7.88333' | ||
rx='1' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
/> | ||
<path | ||
d='M7.35294 10.7776H17.3529' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeMiterlimit='2.61533' | ||
strokeLinecap='round' | ||
/> | ||
<circle cx='9.03253' cy='13.6208' r='0.75' fill='currentColor' /> | ||
<circle cx='10.1702' cy='13.6208' r='0.75' fill='currentColor' /> | ||
</SvgTemplate> | ||
); | ||
}; |
10 changes: 2 additions & 8 deletions
10
...rc/components/RadioButton/RadioButton.tsx → ...dio-icons/src/react/icons/RadioButton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 2 additions & 8 deletions
10
...io-icons/src/components/Select/Select.tsx → ...s/studio-icons/src/react/icons/Select.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 2 additions & 8 deletions
10
...ns/src/components/ShortText/ShortText.tsx → ...tudio-icons/src/react/icons/ShortText.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import React from 'react'; | ||
import { IconProps } from '../types'; | ||
import { SvgTemplate } from './SvgTemplate'; | ||
|
||
export const SignTask = (props: IconProps): JSX.Element => { | ||
return ( | ||
<SvgTemplate {...props}> | ||
<rect | ||
x='3.8222' | ||
y='4.5311' | ||
width='18' | ||
height='15.47' | ||
rx='2' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
/> | ||
<path | ||
d='M7.54221 17.6227H18.1022' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeMiterlimit='2.61533' | ||
strokeLinecap='round' | ||
/> | ||
<path | ||
d='M9.00428 15.4174L9.56043 12.9147L14.2877 8.1874C14.8326 7.64252 15.6913 7.64058 16.2343 8.18742C16.7744 8.73148 16.7764 9.63516 16.2343 10.1773L11.507 14.9046L9.00428 15.4174Z' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeLinejoin='round' | ||
/> | ||
<path | ||
d='M13.4535 8.20169L15.4 10.1482' | ||
stroke='currentColor' | ||
strokeWidth='1.5' | ||
strokeMiterlimit='2.61533' | ||
/> | ||
</SvgTemplate> | ||
); | ||
}; |
7 changes: 1 addition & 6 deletions
7
...rc/components/SvgTemplate/SvgTemplate.tsx → ...dio-icons/src/react/icons/SvgTemplate.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.