@charmy.tech/react-native-stroke-text
Version:
React Native Stroke/Outline Text
17 lines (16 loc) • 434 B
TypeScript
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 {};