strapi-plugin-content-manager
Version:
A powerful UI to easily manage your data.
14 lines (11 loc) • 490 B
JavaScript
import React from 'react';
const Quote = () => {
return (
<svg width="9" height="9" xmlns="http://www.w3.org/2000/svg">
<g fill="#333740" fillRule="evenodd">
<path d="M3 0C2.047 0 1.301.263.782.782.263 1.302 0 2.047 0 3v6h3.75V3H1.5c0-.54.115-.93.343-1.157C2.07 1.615 2.46 1.5 3 1.5M8.25 0c-.953 0-1.699.263-2.218.782-.519.52-.782 1.265-.782 2.218v6H9V3H6.75c0-.54.115-.93.343-1.157.227-.228.617-.343 1.157-.343" />
</g>
</svg>
);
};
export default Quote;