UNPKG

react-native-qrcode-mask

Version:
20 lines (19 loc) 577 B
/** * Created by nghinv on Thu Jul 15 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; interface AnimatedLineProps { width?: number; height?: number; edgeBorderWidth?: number; lineThick?: number; lineSize?: number | string; lineBorderRadius?: number; lineColor?: string; lineAnimationDuration?: number; lineDirection?: 'vertical' | 'horizontal'; } declare function AnimatedLine(props: AnimatedLineProps): JSX.Element; declare const _default: React.MemoExoticComponent<typeof AnimatedLine>; export default _default;