mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-13 07:45:07 +00:00
22 lines
550 B
TypeScript
22 lines
550 B
TypeScript
import * as React from 'react';
|
|
import RootSvg, { RootSvgProps } from './RootSvg';
|
|
|
|
function SvgMaterialDesign(props: RootSvgProps) {
|
|
return (
|
|
<RootSvg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={24}
|
|
height={24}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<circle cx={12} cy={12} r={12} fill="#737373" />
|
|
<path fill="#BDBDBD" d="M4 4h16v16H4z" />
|
|
<path fillRule="evenodd" clipRule="evenodd" d="M12 20l8-16H4l8 16z" fill="#fff" />
|
|
</RootSvg>
|
|
);
|
|
}
|
|
|
|
export default SvgMaterialDesign;
|