nested-comments-react
Version:
A simple react component for nested comments
16 lines (15 loc) • 394 B
JavaScript
import * as React from "react";
const SvgReplyIcon = (props) => (
<svg
fill="#585858"
height={800}
width={800}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
xmlSpace="preserve"
{...props}
>
<path d="M185.2 128.6V19.7L0 204.9l185.2 185.2v-109c152.5 0 250.5 0 326.8 217.9 0-108.9 10.9-370.4-326.8-370.4z" />
</svg>
);
export default SvgReplyIcon;