react-native-qrcode-styled
Version:
A fully customizable QR Code generator for React Native based on react-native-svg and javascript-qrcode.
10 lines • 422 B
TypeScript
import React from 'react';
import type { GradientOrigin, LinearGradientProps } from '../types';
interface SVGLinearGradientProps extends LinearGradientProps {
id: string;
size: number;
origin?: GradientOrigin;
}
export default function SVGLinearGradient({ id, size, origin, start, end, colors, locations, }: SVGLinearGradientProps): React.JSX.Element;
export {};
//# sourceMappingURL=SVGLinearGradient.d.ts.map