| 1 |
export default () => { |
| 2 |
return ( |
| 3 |
<svg |
| 4 |
width="24" |
| 5 |
height="24" |
| 6 |
viewBox="0 0 24 24" |
| 7 |
fill="none" |
| 8 |
className="srfm-logo" |
| 9 |
xmlns="http://www.w3.org/2000/svg" |
| 10 |
> |
| 11 |
{ /* Had to add the internal styles here to maintain the logo color in block inserter selected state. */ } |
| 12 |
<style>{ `.is-selected svg.srfm-logo path {fill:#000000;}` }</style> |
| 13 |
<g clipPath="url(#clip0_15961_16935)"> |
| 14 |
<rect width="24" height="24" fill="evenodd" /> |
| 15 |
<path |
| 16 |
d="M6.85742 5.14258H17.1431V8.57115H8.57171L6.85742 10.2854V8.57115V5.14258Z" |
| 17 |
fill="white" |
| 18 |
/> |
| 19 |
<path |
| 20 |
d="M6.85742 5.14258H17.1431V8.57115H8.57171L6.85742 10.2854V8.57115V5.14258Z" |
| 21 |
fill="white" |
| 22 |
/> |
| 23 |
<path |
| 24 |
d="M6.85742 10.2852H15.4288V13.7137H8.57171L6.85742 15.428V13.7137V10.2852Z" |
| 25 |
fill="white" |
| 26 |
/> |
| 27 |
<path |
| 28 |
d="M6.85742 10.2852H15.4288V13.7137H8.57171L6.85742 15.428V13.7137V10.2852Z" |
| 29 |
fill="white" |
| 30 |
/> |
| 31 |
<path |
| 32 |
d="M6.85742 15.4287H12.0003V18.8573H6.85742V15.4287Z" |
| 33 |
fill="white" |
| 34 |
/> |
| 35 |
<path |
| 36 |
d="M6.85742 15.4287H12.0003V18.8573H6.85742V15.4287Z" |
| 37 |
fill="white" |
| 38 |
/> |
| 39 |
</g> |
| 40 |
<defs> |
| 41 |
<clipPath id="clip0_15961_16935"> |
| 42 |
<rect width="24" height="24" fill="white" /> |
| 43 |
</clipPath> |
| 44 |
</defs> |
| 45 |
</svg> |
| 46 |
); |
| 47 |
}; |
| 48 |
|