mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
23 lines
565 B
TypeScript
23 lines
565 B
TypeScript
import * as React from 'react';
|
|
|
|
export interface ICenterIconProps { }
|
|
|
|
export const CenterIcon: React.FunctionComponent<ICenterIconProps> = () => {
|
|
return (
|
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
<rect
|
|
x="1.2"
|
|
y="0.6"
|
|
stroke="currentcolor"
|
|
strokeMiterlimit="10"
|
|
width="13.6"
|
|
height="14.8"
|
|
/>
|
|
<path
|
|
stroke="currentcolor"
|
|
d="M2.6,10V9h10.8v1H2.6z M2.6,6h10.8v1H2.6V6z M13.4,3v1H2.6V3H13.4z M2.6,12v1h10.8v-1H2.6z"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|