Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 3x 3x | import Svg, { Circle, Rect } from "react-native-svg";
// Packages
import { IconProps } from "@repo/types/icons";
// Themes
import { colors } from "../themes";
export const StopIcon = ({
width = 24,
height = 24,
color = colors.slate97,
}: IconProps) => (
<Svg
width={width}
height={height}
viewBox="0 0 24 24"
fill="none"
color={color}
>
<Circle cx="12" cy="12" r="9" stroke="currentColor" strokeWidth="1.5" />
<Rect x="7.5" y="7.5" width="9" height="9" rx="2" fill="currentColor" />
</Svg>
);
|