mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
10 lines
227 B
TypeScript
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>
|
|
);
|
|
}
|