UNPKG

react-native-qrcode-styled

Version:

A fully customizable QR Code generator for React Native based on react-native-svg and javascript-qrcode.

9 lines 357 B
import React from 'react'; import type { GradientProps, GradientOrigin } from '../types'; export interface SVGGradientProps extends GradientProps { id: string; size: number; origin?: GradientOrigin; } export default function SVGGradient({ type, options, ...props }: SVGGradientProps): React.JSX.Element; //# sourceMappingURL=SVGGradient.d.ts.map