19 lines
390 B
JavaScript
19 lines
390 B
JavaScript
import React from 'react';
|
|
|
|
export default function QuestionAnswer() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="21"
|
|
height="20"
|
|
fill="none"
|
|
viewBox="0 0 21 20"
|
|
>
|
|
<path
|
|
fill="currentColor"
|
|
d="M18.737 5h-2.5v7.5H5.404V15h10l3.333 3.333V5zm-4.166 5.833V1.667H2.07v12.5l3.333-3.334h9.166z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|