-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1683862
commit 4007437
Showing
4 changed files
with
58 additions
and
6 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
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', | ||
}); |
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,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> | ||
), | ||
}); |