UNPKG

react-material-icon-svg

Version:
16 lines (14 loc) 461 B
import React from 'react'; export default function SausageIcon(props) { return ( <svg width="24" height="24" {...props} className={`rmi rmi-sausage ${props.className}`} viewBox="0 0 24 24" > <path d="M3.5 3h6L7.96 5.32C9.16 5.87 10 7.09 10 8.5a5.5 5.5 0 0 0 5.5 5.5c1.41 0 2.63.84 3.18 2.04L21 14.5v6l-2.32-1.54A3.503 3.503 0 0 1 15.5 21 12.5 12.5 0 0 1 3 8.5c0-1.41.84-2.63 2.04-3.18L3.5 3z" /> </svg> ); }