diff --git a/.gitignore b/.gitignore index b49fb8857b..da97bd94d7 100644 --- a/.gitignore +++ b/.gitignore @@ -9,9 +9,6 @@ dist .AppleDouble .LSOverride -# Icon must end with two \r -Icon - # Thumbnails ._* diff --git a/demo/client/components/graphics/Icon/index.js b/demo/client/components/graphics/Icon/index.js new file mode 100644 index 0000000000..59664847cc --- /dev/null +++ b/demo/client/components/graphics/Icon/index.js @@ -0,0 +1,11 @@ +import React from 'react'; + +import { PayloadIcon } from 'payload/components'; + +export default () => { + return ( +
+ +
+ ); +};