Skip to content

Commit

Permalink
feat(icons): Add TriangleOutline and ArrowBackward icons (#2000)
Browse files Browse the repository at this point in the history
* feat(icons): Add TriangleOutline and ArrowBackward icons

Co-authored-by: denkristoffer <denkristoffer@users.noreply.github.com>
  • Loading branch information
damienxy and denkristoffer committed Apr 20, 2022
1 parent 697b7d7 commit 70b21a6
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/components/icons/src/ArrowBackward.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';
import { generateIcon } from '@contentful/f36-icon';

export const ArrowBackward = /*#__PURE__*/ generateIcon({
name: 'ArrowBackward',
path: (
<>
<path d="m12 20 1.41-1.41L7.83 13H20v-2H7.83l5.58-5.59L12 4l-8 8 8 8Z" />
</>
),
});
15 changes: 15 additions & 0 deletions packages/components/icons/src/TriangleOutline.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react';
import { generateIcon } from '@contentful/f36-icon';

export const TriangleOutline = /*#__PURE__*/ generateIcon({
name: 'TriangleOutline',
path: (
<>
<path
fillRule="evenodd"
clipRule="evenodd"
d="m12 4 9 15.546H3L12 4ZM5.838 17.91 12 7.265l6.162 10.643H5.838Z"
/>
</>
),
});
2 changes: 2 additions & 0 deletions packages/components/icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export type {
IconVariant,
} from '@contentful/f36-icon';
export { Archive as ArchiveIcon } from './Archive';
export { ArrowBackward as ArrowBackwardIcon } from './ArrowBackward';
export { ArrowDown as ArrowDownIcon } from './ArrowDown';
export { ArrowDownTrimmed as ArrowDownTrimmedIcon } from './ArrowDownTrimmed';
export { ArrowForward as ArrowForwardIcon } from './ArrowForward';
Expand Down Expand Up @@ -161,6 +162,7 @@ export { ThumbDown as ThumbDownIcon } from './ThumbDown';
export { ThumbDownTrimmed as ThumbDownTrimmedIcon } from './ThumbDownTrimmed';
export { ThumbUp as ThumbUpIcon } from './ThumbUp';
export { ThumbUpTrimmed as ThumbUpTrimmedIcon } from './ThumbUpTrimmed';
export { TriangleOutline as TriangleOutlineIcon } from './TriangleOutline';
export { Users as UsersIcon } from './Users';
export { UsersTrimmed as UsersTrimmedIcon } from './UsersTrimmed';
export { Video as VideoIcon } from './Video';
Expand Down

1 comment on commit 70b21a6

@vercel
Copy link

@vercel vercel bot commented on 70b21a6 Apr 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.