Files
reflector/www/app/styles/icons/stopRecord.tsx
2024-02-08 20:15:13 +01:00

10 lines
227 B
TypeScript

import { Icon } from "@chakra-ui/react";
export default function StopRecordIcon(props) {
return (
<Icon viewBox="0 0 20 20" {...props}>
<rect width="20" height="20" rx="1" fill="currentColor" />
</Icon>
);
}