react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 648 B
JavaScript
import React from 'react';
export default function CarChildSeatIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-car-child-seat ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M17 4.5C17 5.9 15.9 7 14.5 7S12 5.9 12 4.5 13.1 2 14.5 2 17 3.1 17 4.5M15 8h-.8c-2.1 0-4.1-1.2-5.1-3.1-.1-.1-.2-.2-.2-.3l-1.8.8c.5 1.4 2.1 3.2 4.4 4.1l-1.8 5-3.9-1.1L3 18.9l2 .5 1.8-3.6 4.5 1.2c1 .2 2-.3 2.4-1.2L16 9.4c.2-.7-.3-1.4-1-1.4m3.9-1l-3.4 9.4c-.6 1.6-2.1 2.6-3.7 2.6-.3 0-.7 0-1-.1l-2.9-.8-.9 1.8 2 .5 1.4.4c.5.1 1 .2 1.5.2 2.5 0 4.7-1.5 5.6-3.9L21 7h-2.1z" />
</svg>
);
}