mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
21 lines
446 B
TypeScript
21 lines
446 B
TypeScript
import * as React from "react"
|
|
import Svg, { SvgProps, Path } from "react-native-svg"
|
|
const CheckmarkIcon = (props: SvgProps) => (
|
|
<Svg
|
|
width={13}
|
|
height={10}
|
|
viewBox="0 0 13 10"
|
|
fill={props.color || "white"}
|
|
{...props}
|
|
>
|
|
<Path
|
|
stroke="#fff"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={1.95}
|
|
d="m1.48 5.489 3.2 3.178 7.2-7.15"
|
|
/>
|
|
</Svg>
|
|
)
|
|
export default CheckmarkIcon
|