1
0
Fork 0

feat: Initial sanity setup

This commit is contained in:
Joost De Cock 2022-10-20 22:36:16 +02:00
parent 9f0ca820ad
commit c2a7cb4494
25 changed files with 5675 additions and 94 deletions

View file

@ -0,0 +1,15 @@
import React from 'react'
/**
* Couple of things to note:
* - width and height is set to 1em
* - fill is `currentColor` - this will ensure that the icon looks uniform and
* that the hover/active state works. You can of course render anything you
* would like here, but for plugins that are to be used in more than one
* studio, we suggest these rules are followed
**/
export default () => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 250 250">
<path fill="none" stroke="currentColor" strokeWidth="40" d="M5 5h240v240H5z" />
</svg>
)