react-native-linear-gradient-text
Version:
Component to display text with linear gradient.
20 lines • 453 B
TypeScript
import { FC } from 'react';
import { TextStyle } from 'react-native';
import { TextProps } from 'react-native';
interface Props {
text: string;
textStyle?: TextStyle;
textProps?: TextProps;
colors: string[];
start?: {
x: number;
y: number;
};
end?: {
x: number;
y: number;
};
}
export declare const LinearGradientText: FC<Props>;
export {};
//# sourceMappingURL=LinearGradientText.d.ts.map