Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion assets/icons/system-icons/av/play.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,498 changes: 761 additions & 737 deletions packages/eds-core-react/stories/assets/icons/system-icons.json

Large diffs are not rendered by default.

22 changes: 20 additions & 2 deletions packages/eds-icons/src/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3105,7 +3105,7 @@ export const aerial_drone: IconData = {
prefix: 'eds',
height: '24',
width: '24',
svgPathData: 'M19 5a1 1 0 1 0 2 0h1a1 1 0 1 0 0-2h-1a1 1 0 1 0-2 0H5a1 1 0 0 0-2 0H2a1 1 0 0 0 0 2h1a1 1 0 0 0 2 0h2.204L9.03 8.032A2 2 0 0 0 10.743 9h2.836a2 2 0 0 0 1.761-1.053L16.925 5zM9.539 5h5.115l-1.075 2h-2.836zm6.42 4.96c-2.234 2.234-5.684 2.234-7.918 0l-1.415 1.414c3.016 3.016 7.732 3.016 10.748 0zM5.375 12.626c3.734 3.734 9.518 3.734 13.252 0l1.414 1.414c-4.515 4.516-11.565 4.516-16.08 0zm15.919 2.667c-5.235 5.234-13.351 5.234-18.586 0l-1.414 1.414c6.015 6.016 15.399 6.016 21.414 0z',
svgPathData: 'M22.707 16.707c-6.015 6.016-15.399 6.015-21.414 0l1.414-1.414c5.234 5.234 13.352 5.234 18.586 0zM20.04 14.04c-4.515 4.515-11.565 4.515-16.08 0l1.414-1.414c3.734 3.734 9.518 3.734 13.252 0zm-2.666-2.666c-3.015 3.015-7.732 3.015-10.747 0L8.041 9.96c2.234 2.234 5.685 2.234 7.919 0zM20 2a1 1 0 0 1 1 1h1a1 1 0 1 1 0 2h-1a1 1 0 1 1-2 0h-2.075L15.34 7.947A2 2 0 0 1 13.58 9h-2.837a2 2 0 0 1-1.713-.969L7.204 5H5a1 1 0 0 1-2 0H2a1 1 0 0 1 0-2h1a1 1 0 0 1 2 0h14a1 1 0 0 1 1-1m-9.257 5h2.836l1.075-2H9.54z',

}

Expand Down Expand Up @@ -5857,7 +5857,7 @@ export const play: IconData = {
prefix: 'eds',
height: '24',
width: '24',
svgPathData: 'm17.5 12-11 7V5zm-3.73 0L8.5 8.64v6.72z',
svgPathData: 'M19 12 8 19V5zm-3.73 0L10 8.64v6.72z',

}

Expand Down Expand Up @@ -6050,6 +6050,15 @@ export const unfold_more: IconData = {

}

export const unfold_more_horizontal: IconData = {
name: 'unfold_more_horizontal',
prefix: 'eds',
height: '24',
width: '24',
svgPathData: 'M7.59 16.59 3 12l4.59-4.58L9 8.83 5.83 12 9 15.17zm8.82-.01L15 15.17 18.17 12 15 8.83l1.41-1.42L21 12z',

}

export const unfold_less: IconData = {
name: 'unfold_less',
prefix: 'eds',
Expand All @@ -6059,6 +6068,15 @@ export const unfold_less: IconData = {

}

export const unfold_less_horizontal: IconData = {
name: 'unfold_less_horizontal',
prefix: 'eds',
height: '24',
width: '24',
svgPathData: 'M5.41 16.58 4 15.17 7.17 12 4 8.83l1.41-1.42L10 12zm13.18.01L14 12l4.59-4.59L20 8.83 16.83 12 20 15.17z',

}

export const swap_horizontal: IconData = {
name: 'swap_horizontal',
prefix: 'eds',
Expand Down
1 change: 1 addition & 0 deletions scripts/figma-broker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Extracts design decisions into [design tokens] from Figma using the [Figma Web A
## Usage

### Setup
**Important!** You need edit access in the [Assets](https://www.figma.com/design/BQjYMxdSdgRkdhKTDDU7L4KU/Assets?node-id=86-3715&t=NZZqKuNzEaHkQDa6-0) file in Figma to be able to run the scripts.

1. Go to Figma and generate a new personal access token (Found under your account settings)
2. Add an `.env` file in the root of `figma-broker` or if you are using Codespaces, go to `Github Settings` → `Codespaces` and create a new secret. Give it the name `FIGMA_TOKEN`, paste your token as value, and select `equinor/design-system` in the repository access select menu. If you use Gitpod, type `eval $(gp env -e FIGMA_TOKEN=your-token)` in the terminal. Skip the `$` if you’re using Fish.
Expand Down
Loading