UNPKG

@charmy.tech/react-native-stroke-text

Version:
17 lines (16 loc) 434 B
import React from "react"; type TextAlign = "center" | "left" | "right"; export interface StrokeTextProps { width?: number; text: string; fontSize?: number; color?: string; strokeColor?: string; strokeWidth?: number; fontFamily?: string; align?: TextAlign; numberOfLines?: number; ellipsis?: boolean; } export declare const StrokeText: (props: StrokeTextProps) => React.JSX.Element; export {};