Files
react-test/docs/src/icons/SvgMaterialDesign.tsx
how2ice 005cf56baf
Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
init project
2025-12-12 14:26:25 +09:00

21 lines
531 B
TypeScript

import RootSvg, { RootSvgProps } from 'docs/src/icons/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;