-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract from 22a211d83ba92264577552b7fe894478b819c579
- Loading branch information
akeneo
committed
Jan 21, 2025
1 parent
7a79e61
commit c87575a
Showing
7 changed files
with
23 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,15 @@ | ||
import React from 'react'; | ||
import {IconProps} from './IconProps'; | ||
|
||
export const ArrowSimpleRightIcon = ({title, size = 24, color = 'currentColor', ...props}: IconProps) => ( | ||
<svg viewBox="0 0 24 24" width={size} height={size} {...props}> | ||
{title && <title>{title}</title>} | ||
<g stroke="none" strokeWidth="1" fill="none" fillRule="evenodd" strokeLinecap="round" strokeLinejoin="round"> | ||
<path | ||
d="M12,2 L12,21 L12,2 Z M18,15 L12,22 L6,15 L6,15" | ||
stroke={color} | ||
transform="translate(12.000000, 12.000000) rotate(-90.000000) translate(-12.000000, -12.000000) " | ||
/> | ||
</g> | ||
</svg> | ||
); |
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