15 lines
590 B
JavaScript
15 lines
590 B
JavaScript
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>
|
|
)
|