1
0
Fork 0
freesewing/sites/sanity/plugins/sanity-plugin-tutorial/GetStartedTutorialIcon.js

16 lines
590 B
JavaScript
Raw Normal View History

2022-10-20 22:36:16 +02:00
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>
)