-
Notifications
You must be signed in to change notification settings - Fork 51
Add openstack and openstack-color
#3353
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hashibot-hds
wants to merge
3
commits into
main
Choose a base branch
from
hds-icon-export-d9c1879
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,5 @@ | ||
| --- | ||
| "@hashicorp/flight-icons": minor | ||
| --- | ||
|
|
||
| Added `openstack` and `openstack-color` icons. |
This file contains hidden or 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 hidden or 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
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.
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.
This file contains hidden or 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 hidden or 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,33 @@ | ||
| import { forwardRef, useMemo } from 'react'; | ||
| import { IconProps } from './types'; | ||
|
|
||
| export const IconOpenstack16 = forwardRef<SVGSVGElement, IconProps>( | ||
| ({ color = 'currentColor', title, ...props }, svgRef) => { | ||
| const titleId = useMemo( | ||
| () => | ||
| title | ||
| ? 'title-' + Math.random().toString(36).substr(2, 9) | ||
| : undefined, | ||
| [title] | ||
| ); | ||
| return ( | ||
| <svg | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| width={16} | ||
| height={16} | ||
| fill="none" | ||
| viewBox="0 0 16 16" | ||
| aria-hidden={!title} | ||
| ref={svgRef} | ||
| aria-labelledby={titleId} | ||
| {...props} | ||
| > | ||
| {title ? <title id={titleId}>{title}</title> : null} | ||
| <path | ||
| fill={color} | ||
| d="M4.162 10.54v.51c0 .398.315.72.703.72h6.27a.711.711 0 00.704-.72v-.51H15v3.131c0 .731-.585 1.329-1.3 1.329H2.3c-.715 0-1.3-.598-1.3-1.329v-3.132h3.162zm0-4.155v3.23H1v-3.23h3.161zm10.838 0v3.23h-3.161v-3.23H15zM13.7 1c.715 0 1.3.598 1.3 1.33v3.13h-3.161v-.51a.711.711 0 00-.704-.72h-6.27a.711.711 0 00-.704.72v.51H1V2.33C1 1.598 1.585 1 2.3 1h11.4z" | ||
| /> | ||
| </svg> | ||
| ); | ||
| } | ||
| ); |
This file contains hidden or 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,33 @@ | ||
| import { forwardRef, useMemo } from 'react'; | ||
| import { IconProps } from './types'; | ||
|
|
||
| export const IconOpenstack24 = forwardRef<SVGSVGElement, IconProps>( | ||
| ({ color = 'currentColor', title, ...props }, svgRef) => { | ||
| const titleId = useMemo( | ||
| () => | ||
| title | ||
| ? 'title-' + Math.random().toString(36).substr(2, 9) | ||
| : undefined, | ||
| [title] | ||
| ); | ||
| return ( | ||
| <svg | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| width={24} | ||
| height={24} | ||
| fill="none" | ||
| viewBox="0 0 24 24" | ||
| aria-hidden={!title} | ||
| ref={svgRef} | ||
| aria-labelledby={titleId} | ||
| {...props} | ||
| > | ||
| {title ? <title id={titleId}>{title}</title> : null} | ||
| <path | ||
| fill={color} | ||
| d="M6.517 15.627v.731c0 .567.45 1.027 1.005 1.027h8.957c.555 0 1.005-.46 1.005-1.027v-.73H22v4.474C22 21.146 21.164 22 20.142 22H3.858C2.836 22 2 21.146 2 20.102v-4.475h4.517zm0-5.935v4.615H2V9.692h4.516zm15.483 0v4.615h-4.516V9.692H22zM20.142 2C21.164 2 22 2.854 22 3.9v4.473h-4.516v-.731c0-.567-.45-1.027-1.005-1.027H7.52c-.555 0-1.005.46-1.005 1.027v.73H2V3.9C2 2.854 2.836 2 3.858 2h16.284z" | ||
| /> | ||
| </svg> | ||
| ); | ||
| } | ||
| ); |
This file contains hidden or 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,33 @@ | ||
| import { forwardRef, useMemo } from 'react'; | ||
| import { IconProps } from './types'; | ||
|
|
||
| export const IconOpenstackColor16 = forwardRef<SVGSVGElement, IconProps>( | ||
| ({ color = 'currentColor', title, ...props }, svgRef) => { | ||
| const titleId = useMemo( | ||
| () => | ||
| title | ||
| ? 'title-' + Math.random().toString(36).substr(2, 9) | ||
| : undefined, | ||
| [title] | ||
| ); | ||
| return ( | ||
| <svg | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| width={16} | ||
| height={16} | ||
| fill="none" | ||
| viewBox="0 0 16 16" | ||
| aria-hidden={!title} | ||
| ref={svgRef} | ||
| aria-labelledby={titleId} | ||
| {...props} | ||
| > | ||
| {title ? <title id={titleId}>{title}</title> : null} | ||
| <path | ||
| fill="#DA1A32" | ||
| d="M4.162 10.54v.51c0 .398.315.72.703.72h6.27a.711.711 0 00.704-.72v-.51H15v3.131c0 .731-.585 1.329-1.3 1.329H2.3c-.715 0-1.3-.598-1.3-1.329v-3.132h3.162zm0-4.155v3.23H1v-3.23h3.161zm10.838 0v3.23h-3.161v-3.23H15zM13.7 1c.715 0 1.3.598 1.3 1.33v3.13h-3.161v-.51a.711.711 0 00-.704-.72h-6.27a.711.711 0 00-.704.72v.51H1V2.33C1 1.598 1.585 1 2.3 1h11.4z" | ||
| /> | ||
| </svg> | ||
| ); | ||
| } | ||
| ); |
This file contains hidden or 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,33 @@ | ||
| import { forwardRef, useMemo } from 'react'; | ||
| import { IconProps } from './types'; | ||
|
|
||
| export const IconOpenstackColor24 = forwardRef<SVGSVGElement, IconProps>( | ||
| ({ color = 'currentColor', title, ...props }, svgRef) => { | ||
| const titleId = useMemo( | ||
| () => | ||
| title | ||
| ? 'title-' + Math.random().toString(36).substr(2, 9) | ||
| : undefined, | ||
| [title] | ||
| ); | ||
| return ( | ||
| <svg | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| width={24} | ||
| height={24} | ||
| fill="none" | ||
| viewBox="0 0 24 24" | ||
| aria-hidden={!title} | ||
| ref={svgRef} | ||
| aria-labelledby={titleId} | ||
| {...props} | ||
| > | ||
| {title ? <title id={titleId}>{title}</title> : null} | ||
| <path | ||
| fill="#DA1A32" | ||
| d="M6.517 15.627v.731c0 .567.45 1.027 1.005 1.027h8.957c.555 0 1.005-.46 1.005-1.027v-.73H22v4.474C22 21.146 21.164 22 20.142 22H3.858C2.836 22 2 21.146 2 20.102v-4.475h4.517zm0-5.935v4.615H2V9.692h4.516zm15.483 0v4.615h-4.516V9.692H22zM20.142 2C21.164 2 22 2.854 22 3.9v4.473h-4.516v-.731c0-.567-.45-1.027-1.005-1.027H7.52c-.555 0-1.005.46-1.005 1.027v.73H2V3.9C2 2.854 2.836 2 3.858 2h16.284z" | ||
| /> | ||
| </svg> | ||
| ); | ||
| } | ||
| ); |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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.
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.
Binary file not shown.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@didoo I ran the sync/build manually to update the descriptions/keywords and it kept failing (couldn't find the sync script in the
/scriptsdirectory). I finally tried explicitly set the filename which ended up working, is this going to impact the automated pipeline? Otherwise, I'll just close this PR and run the workflow again.