2
0
Files
bot/apps/landing-page/assets/icons/QuoteLeftIcon.tsx

14 lines
539 B
TypeScript
Raw Normal View History

import Icon, { IconProps } from "@chakra-ui/icon";
import React from "react";
export const QuoteLeftIcon = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentcolor"
{...props}
>
<path d="M3.516 7a3.5 3.5 0 1 1-3.5 3.5L0 10a7 7 0 0 1 7-7v2a4.97 4.97 0 0 0-3.536 1.464a5.01 5.01 0 0 0-.497.578c.179-.028.362-.043.548-.043zm9 0a3.5 3.5 0 1 1-3.5 3.5L9 10a7 7 0 0 1 7-7v2a4.97 4.97 0 0 0-3.536 1.464a5.01 5.01 0 0 0-.497.578c.179-.028.362-.043.549-.043z" />
</Icon>
);