-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(plasma-new-hope, sdds-insol): icon tokens updated
- Loading branch information
1 parent
f6196be
commit 352af87
Showing
14 changed files
with
132 additions
and
23 deletions.
There are no files selected for viewing
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
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
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
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
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
11 changes: 8 additions & 3 deletions
11
packages/plasma-new-hope/src/components/_Icon/Icons/IconDisclosureDownCentered.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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
import React from 'react'; | ||
import React, { HTMLAttributes } from 'react'; | ||
|
||
import { DisclosureDownCentered } from '../Icon.assets/DisclosureDownCentered'; | ||
import { IconRoot, IconProps } from '../IconRoot'; | ||
|
||
export const IconDisclosureDownCentered: React.FC<IconProps> = ({ size = 'xs', color, className }) => { | ||
return <IconRoot className={className} size={size} color={color} icon={DisclosureDownCentered} />; | ||
export const IconDisclosureDownCentered: React.FC<IconProps & HTMLAttributes<HTMLDivElement>> = ({ | ||
size = 'xs', | ||
color, | ||
className, | ||
...rest | ||
}) => { | ||
return <IconRoot className={className} size={size} color={color} icon={DisclosureDownCentered} {...rest} />; | ||
}; |
11 changes: 8 additions & 3 deletions
11
packages/plasma-new-hope/src/components/_Icon/Icons/IconDisclosureRightCentered.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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
import React from 'react'; | ||
import React, { HTMLAttributes } from 'react'; | ||
|
||
import { DisclosureRightCentered } from '../Icon.assets/DisclosureRightCentered'; | ||
import { IconRoot, IconProps } from '../IconRoot'; | ||
|
||
export const IconDisclosureRightCentered: React.FC<IconProps> = ({ size = 's', color, className }) => { | ||
return <IconRoot className={className} size={size} color={color} icon={DisclosureRightCentered} />; | ||
export const IconDisclosureRightCentered: React.FC<IconProps & HTMLAttributes<HTMLDivElement>> = ({ | ||
size = 's', | ||
color, | ||
className, | ||
...rest | ||
}) => { | ||
return <IconRoot className={className} size={size} color={color} icon={DisclosureRightCentered} {...rest} />; | ||
}; |
11 changes: 8 additions & 3 deletions
11
packages/plasma-new-hope/src/components/_Icon/Icons/IconDone.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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
import React from 'react'; | ||
import React, { HTMLAttributes } from 'react'; | ||
|
||
import { Done } from '../Icon.assets/Done'; | ||
import { IconRoot, IconProps } from '../IconRoot'; | ||
|
||
export const IconDone: React.FC<IconProps> = ({ size = 's', color, className }) => { | ||
return <IconRoot className={className} size={size} color={color} icon={Done} />; | ||
export const IconDone: React.FC<IconProps & HTMLAttributes<HTMLDivElement>> = ({ | ||
size = 's', | ||
color, | ||
className, | ||
...rest | ||
}) => { | ||
return <IconRoot className={className} size={size} color={color} icon={Done} {...rest} />; | ||
}; |
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