20 lines
847 B
TypeScript
20 lines
847 B
TypeScript
import { SVGAttributes } from 'react';
|
|
|
|
const MentorDarkMobile = (props: SVGAttributes<SVGElement>) => {
|
|
return (
|
|
<svg width="25" height="23" viewBox="0 0 25 23" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
<path
|
|
d="M12.8452 22.7778C18.8435 22.7778 23.706 17.9027 23.706 11.8889C23.706 5.87512 18.8435 1 12.8452 1C6.84693 1 1.98438 5.87512 1.98438 11.8889C1.98438 17.9027 6.84693 22.7778 12.8452 22.7778Z"
|
|
stroke="#00A76F"
|
|
stroke-width="2"
|
|
/>
|
|
<path
|
|
d="M17.6801 11.0998L11.0621 7.12579C10.5243 6.80306 9.70068 7.11626 9.70068 7.91448V15.8605C9.70068 16.5766 10.466 17.0082 11.0621 16.6492L17.6801 12.6771C18.2703 12.3239 18.2723 11.4531 17.6801 11.0998Z"
|
|
fill="#00A76F"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default MentorDarkMobile;
|