Files
metabuilder/icons/react/fakemui/Stop.tsx
2026-03-09 22:30:41 +00:00

9 lines
203 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Stop = (props: IconProps) => (
<Icon {...props}>
<rect x="48" y="48" width="160" height="160" rx="8" />
</Icon>
)