This repository was archived by the owner on Mar 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
feat(Icon): Redlining icons #441
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
9c98165
showing filled & outline versions of icons
5d82d22
adding some new icons
ce5fb51
modify existing icons
631349a
getting styles for Icon working with font icons & SVGs all lined up
29bee04
removing debug background
dd7b5cc
remove size='big' from examples
6b8539e
add fallback for boxShadow if no color is supplied
7c3b946
fixed a bunch of icons to use correct filled/outline props
b15ead2
removing icons i added earlier. will add as needed
0929a52
Merge branch 'master' into feat/teams-icons-redlines
c415471
fixining size of status in avatar
2fb58dd
fixing weird icon issue because grid item being applied to icon
970ce59
updating signature for getBorderedStyles
8d756a0
merge in latest from master
ba48214
separating out the filled / outline icon versions in the icon set exa…
bbf21c3
add changelog entry
d28cade
fixed merge conflict with changelog
0f20544
Merge branch 'master' into feat/teams-icons-redlines
cd2df14
fix ui where image customizations using icon for avatar was incorrect
ec67411
keeping status as close to what it is now until for now
446910c
Merge branch 'master' into feat/teams-icons-redlines
codepretty 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
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
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
46 changes: 36 additions & 10 deletions
46
docs/src/examples/components/Icon/Usage/IconSetExample.shorthand.tsx
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
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
23 changes: 20 additions & 3 deletions
23
docs/src/examples/components/Icon/Variations/IconExampleSize.shorthand.tsx
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 |
---|---|---|
@@ -1,18 +1,35 @@ | ||
import React from 'react' | ||
import { Icon } from '@stardust-ui/react' | ||
import { Grid, Icon } from '@stardust-ui/react' | ||
|
||
const IconExampleSize = () => ( | ||
<div> | ||
<Grid rows={2} style={{ textAlign: 'center' }}> | ||
<Icon name="home" size="micro" /> | ||
<Icon name="call-video" size="micro" /> | ||
|
||
<Icon name="home" size="mini" /> | ||
<Icon name="call-video" size="mini" /> | ||
|
||
<Icon name="home" size="tiny" /> | ||
<Icon name="call-video" size="tiny" /> | ||
|
||
<Icon name="home" size="small" /> | ||
<Icon name="call-video" size="small" /> | ||
|
||
<Icon name="home" /> | ||
<Icon name="call-video" /> | ||
|
||
<Icon name="home" size="large" /> | ||
<Icon name="call-video" size="large" /> | ||
|
||
<Icon name="home" size="big" /> | ||
<Icon name="call-video" size="big" /> | ||
|
||
<Icon name="home" size="huge" /> | ||
<Icon name="call-video" size="huge" /> | ||
|
||
<Icon name="home" size="massive" /> | ||
</div> | ||
<Icon name="call-video" size="massive" /> | ||
</Grid> | ||
) | ||
|
||
export default IconExampleSize |
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
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
Oops, something went wrong.
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.
👍