import React from 'react';
export default function CoffinIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-coffin ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M8 22L5 8l3-6h8l3 6-3 14H8m3-16v2H9v2h2v5h2v-5h2V8h-2V6h-2z" />
</svg>
);
}