1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

better editor layout

This commit is contained in:
muerwre 2019-08-01 04:36:09 +07:00
parent a2bb40bb14
commit fcfc16c157
11 changed files with 242 additions and 67 deletions

11
src/sprites/Sprites.tsx Normal file
View file

@ -0,0 +1,11 @@
import React, {FC} from 'react';
const Sprites: FC<{}> = () => (
<svg width={0} height={0} viewBox="0 0 20 20">
<g id="cell-single">
<path d="M0 0L20 20L0 10Z" />
</g>
</svg>
);
export { Sprites };