UNPKG

victory-native

Version:

[![Victory Native](https://oss.nearform.com/api/banner?badge=victory&text=victory+native&bg=9c2f1e)](https://commerce.nearform.com/open-source/victory-native/)

16 lines (15 loc) 610 B
import React from "react"; import { type Color, type PathProps } from "@shopify/react-native-skia"; import type { PathAnimationConfig } from "../hooks/useAnimatedPath"; export type PieSliceAngularInsetData = { angularStrokeWidth: number; angularStrokeColor: Color; }; type AdditionalPathProps = Partial<Omit<PathProps, "color" | "path">> & { animate?: PathAnimationConfig; }; type PieSliceAngularInsetProps = { angularInset: PieSliceAngularInsetData; } & AdditionalPathProps; export declare const PieSliceAngularInset: (props: PieSliceAngularInsetProps) => React.JSX.Element | null; export {};