remove unused component

This commit is contained in:
Aykut Saraç 2022-03-18 10:55:04 +03:00
parent 74c226137a
commit 82320ad5d7

View File

@ -1,17 +0,0 @@
import React from "react";
import { CustomNodeProps } from ".";
import * as Styled from "./styles";
const ArrayNode: React.FC<CustomNodeProps<string>> = ({ width, height, value }) => {
return (
<Styled.StyledForeignObject width={width} height={height} x={0} y={0}>
<Styled.StyledTextWrapper>
<Styled.StyledText width={width} height={height}>
<Styled.StyledKey arrayValue>{value}</Styled.StyledKey>
</Styled.StyledText>
</Styled.StyledTextWrapper>
</Styled.StyledForeignObject>
);
};
export default ArrayNode;