react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 588 B
JavaScript
import * as React from 'react';
export function SvgKaggle(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M10.352 4c-.234 0-.352.117-.352.352v23.293c0 .234.117.351.352.351h2.296c.234 0 .354-.116.354-.351v-4.836l1.809-1.723 5.238 6.664c.142.165.306.25.496.25h3.172c.166 0 .26-.048.283-.143l-.066-.359-6.91-8.588 6.626-6.412c.123-.128.08-.498-.252-.498h-3.28c-.167 0-.333.086-.499.252L13 18.975V4.352c0-.235-.117-.352-.352-.352h-2.296z" })));
}
export default SvgKaggle;