Skip to content

Commit

Permalink
Extract from 22a211d83ba92264577552b7fe894478b819c579
Browse files Browse the repository at this point in the history
  • Loading branch information
akeneo committed Jan 21, 2025
1 parent 7a79e61 commit c87575a
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 4 deletions.
1 change: 1 addition & 0 deletions lib/icons/ArrowSimpleRightIcon.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ export declare const ArrowLeftIcon: ({ title, size, color, ...props }: IconProps

export declare const ArrowRightIcon: ({ title, size, color, ...props }: IconProps) => default_2.JSX.Element;

export declare const ArrowSimpleRightIcon: ({ title, size, color, ...props }: IconProps) => default_2.JSX.Element;

export declare const ArrowSimpleUpIcon: ({ title, size, color, ...props }: IconProps) => default_2.JSX.Element;

export declare const ArrowUpIcon: ({ title, size, color, ...props }: IconProps) => default_2.JSX.Element;
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "akeneo-design-system",
"version": "4.0.0",
"version": "4.0.1",
"description": "Akeneo design system",
"files": [
"lib"
Expand Down
15 changes: 15 additions & 0 deletions src/icons/ArrowSimpleRightIcon.tsx
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>
);
1 change: 1 addition & 0 deletions src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export * from './ArrowIcon';
export * from './ArrowDownIcon';
export * from './ArrowLeftIcon';
export * from './ArrowRightIcon';
export * from './ArrowSimpleRightIcon';
export * from './ArrowSimpleUpIcon';
export * from './ArrowUpIcon';
export * from './AssetsIcon';
Expand Down

0 comments on commit c87575a

Please sign in to comment.