strapi-to-lokalise-plugin
Version:
Preview and sync Lokalise translations from Strapi admin
23 lines (20 loc) • 616 B
JavaScript
import React from 'react';
const PluginIcon = (props = {}) =>
React.createElement(
'svg',
{
width: 24,
height: 24,
viewBox: '0 0 24 24',
fill: 'none',
xmlns: 'http://www.w3.org/2000/svg',
role: 'img',
'aria-hidden': true,
...props,
},
React.createElement('path', {
d: 'M5 3h6a2 2 0 0 1 2 2v1h1a2 2 0 0 1 2 2v1h1a2 2 0 1 1 0 4h-1v1a2 2 0 0 1-2 2h-1v1a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Zm2 6V7H6v10h6v-1H9a2 2 0 0 1-2-2v-1h2a2 2 0 1 0 0-4H7Z',
fill: 'currentColor',
})
);
export default PluginIcon;