adds missing icon component, adjusts gitignore to not hit icon files

This commit is contained in:
James
2018-08-14 09:50:13 -04:00
parent a561e3334a
commit 96b43f8b55
2 changed files with 11 additions and 3 deletions

3
.gitignore vendored
View File

@@ -9,9 +9,6 @@ dist
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*

View File

@@ -0,0 +1,11 @@
import React from 'react';
import { PayloadIcon } from 'payload/components';
export default () => {
return (
<div className="icon-wrap">
<PayloadIcon />
</div>
);
};