Skip to content

Commit

Permalink
feat: add entries and page icons
Browse files Browse the repository at this point in the history
  • Loading branch information
ChidinmaOrajiaku committed Oct 7, 2022
1 parent 1683862 commit 4007437
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 6 deletions.
18 changes: 15 additions & 3 deletions packages/components/icons/src/Entry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,21 @@ export const Entry = /*#__PURE__*/ generateIcon({
name: 'Entry',
path: (
<Fragment>
<path fill="none" d="M0 0h24v24H0V0z" />
<path d="M8 16h8v2H8zM8 12h8v2H8z" />
<path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" />
<path
d="M3 13.5V11C3 10.4477 3.44772 10 4 10H6.5C7.05228 10 7.5 10.4477 7.5 11V13.5C7.5 14.0523 7.05228 14.5 6.5 14.5H4C3.44772 14.5 3 14.0523 3 13.5Z"
stroke="#6B7888"
strokeWidth="1.5"
/>
<path
d="M11 13.5V11C11 10.4477 11.4477 10 12 10H14.5C15.0523 10 15.5 10.4477 15.5 11V13.5C15.5 14.0523 15.0523 14.5 14.5 14.5H12C11.4477 14.5 11 14.0523 11 13.5Z"
stroke="#6B7888"
strokeWidth="1.5"
/>
<path
d="M7 6.5V4C7 3.44772 7.44772 3 8 3H10.5C11.0523 3 11.5 3.44772 11.5 4V6.5C11.5 7.05228 11.0523 7.5 10.5 7.5H8C7.44772 7.5 7 7.05228 7 6.5Z"
stroke="#6B7888"
strokeWidth="1.5"
/>
</Fragment>
),
});
18 changes: 15 additions & 3 deletions packages/components/icons/src/EntryTrimmed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,21 @@ export const EntryTrimmed = /*#__PURE__*/ generateIcon({
name: 'EntryTrimmed',
path: (
<Fragment>
<path d="M0 0h16v24H0V0z" fill="none" />
<path d="M4 16h8v2H4zM4 12h8v2H4z" />
<path d="M10 2H2C.9 2 0 2.9 0 4v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H2V4h7v5h5v11z" />
<path
d="M3 13.5V11C3 10.4477 3.44772 10 4 10H6.5C7.05228 10 7.5 10.4477 7.5 11V13.5C7.5 14.0523 7.05228 14.5 6.5 14.5H4C3.44772 14.5 3 14.0523 3 13.5Z"
stroke="#6B7888"
strokeWidth="1.5"
/>
<path
d="M11 13.5V11C11 10.4477 11.4477 10 12 10H14.5C15.0523 10 15.5 10.4477 15.5 11V13.5C15.5 14.0523 15.0523 14.5 14.5 14.5H12C11.4477 14.5 11 14.0523 11 13.5Z"
stroke="#6B7888"
strokeWidth="1.5"
/>
<path
d="M7 6.5V4C7 3.44772 7.44772 3 8 3H10.5C11.0523 3 11.5 3.44772 11.5 4V6.5C11.5 7.05228 11.0523 7.5 10.5 7.5H8C7.44772 7.5 7 7.05228 7 6.5Z"
stroke="#6B7888"
strokeWidth="1.5"
/>
</Fragment>
),
trimmed: true,
Expand Down
15 changes: 15 additions & 0 deletions packages/components/icons/src/PageTrimmed.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React, { Fragment } from 'react';
import { generateIcon } from '@contentful/f36-icon';

export const PageTrimmed = /*#__PURE__*/ generateIcon({
name: 'PageTrimmed',
path: (
<Fragment>
<path d="M0 0h16v24H0V0z" fill="none" />
<path d="M4 16h8v2H4zM4 12h8v2H4z" />
<path d="M10 2H2C.9 2 0 2.9 0 4v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm4 18H2V4h7v5h5v11z" />
</Fragment>
),
trimmed: true,
viewBox: '0 0 16 24',
});
13 changes: 13 additions & 0 deletions packages/components/icons/src/Pages.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React, { Fragment } from 'react';
import { generateIcon } from '@contentful/f36-icon';

export const Page = /*#__PURE__*/ generateIcon({
name: 'Page',
path: (
<Fragment>
<path fill="none" d="M0 0h24v24H0V0z" />
<path d="M8 16h8v2H8zM8 12h8v2H8z" />
<path d="M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm4 18H6V4h7v5h5v11z" />
</Fragment>
),
});

0 comments on commit 4007437

Please sign in to comment.