mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
18 lines
537 B
TypeScript
18 lines
537 B
TypeScript
import * as React from "react";
|
|
import Svg, { SvgProps, Path } from "react-native-svg";
|
|
const MenuDotsIcon = (props: SvgProps) => (
|
|
<Svg
|
|
width={props.width || 4}
|
|
height={props.height || 15}
|
|
viewBox="0 0 4 15"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
fill={props.color || "#7C7C7C"}
|
|
d="M.88 7.563a1.56 1.56 0 1 0 3.12 0 1.56 1.56 0 0 0-3.12 0Zm0-5.2A1.56 1.56 0 1 0 4 2.426a1.56 1.56 0 0 0-3.12-.063Zm0 10.4A1.56 1.56 0 1 0 4 12.701a1.56 1.56 0 0 0-3.12.062Z"
|
|
/>
|
|
</Svg>
|
|
);
|
|
export default MenuDotsIcon;
|