aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/letter-w.js
blob: dfa8752a2bf293141a84b82122a4815c6ca5824a (plain)
1
2
3
4
5
import * as React from "react";

const IconLetterW = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-letter-w" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M4 4l4 16l4 -14l4 14l4 -16" /></svg>;

export default IconLetterW;