18 lines
913 B
TypeScript
18 lines
913 B
TypeScript
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Signpost_split(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 16 16" fill="currentColor" stroke="transparent" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" width={ `${ width }px` } height={ `${ height }px` } ><path d="M14 2.667a.667.667 0 0 0-.667.666V4H2.667v-.667a.667.667 0 0 0-1.334 0v4a.667.667 0 0 0 1.334 0v-.666c2.773 0 3.946 1.406 5.18 2.893 1.233 1.487 2.586 3.107 5.486 3.107v.666a.667.667 0 1 0 1.334 0v-2.666a.667.667 0 0 0-1.334 0v.666c-2.273 0-3.286-1.22-4.46-2.626-1.313-1.58-2.806-3.374-6.206-3.374h10.666V6a.667.667 0 0 0 1.334 0V3.333A.667.667 0 0 0 14 2.667Z"/></svg>
|
|
);
|
|
}
|
|
|
|
export default Signpost_split;
|