mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-19 23:39:50 +02:00
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
/**
|
|
* Designer: Nicolas Newman
|
|
*/
|
|
import { createIcon } from '../svgRegister.js';
|
|
|
|
export default createIcon(
|
|
`<g>
|
|
<rect width="80" height="80" style="fill: #087ebf; stroke-width: 0px;"/>
|
|
</g>`,
|
|
80
|
|
);
|