react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 441 B
JavaScript
import React from 'react';
export default function FormatListBulletedTypeIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-format-list-bulleted-type ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M5 9.5L7.5 14h-5L5 9.5M3 4h4v4H3V4m2 16a2 2 0 0 0 2-2 2 2 0 0 0-2-2 2 2 0 0 0-2 2 2 2 0 0 0 2 2M9 5v2h12V5H9m0 14h12v-2H9v2m0-6h12v-2H9v2z" />
</svg>
);
}