6 lines
444 B
TypeScript
6 lines
444 B
TypeScript
|
import type { SVGProps } from 'react';
|
||
|
|
||
|
export function PhAngle(props: SVGProps<SVGSVGElement>) {
|
||
|
return (<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256" {...props}><path fill="currentColor" d="M96 72a8 8 0 0 1 8-8a104.11 104.11 0 0 1 104 104a8 8 0 0 1-16 0a88.1 88.1 0 0 0-88-88a8 8 0 0 1-8-8m144 120H80V32a8 8 0 0 0-16 0v32H32a8 8 0 0 0 0 16h32v120a8 8 0 0 0 8 8h168a8 8 0 0 0 0-16"></path></svg>);
|
||
|
}
|