UNPKG

react-native-qrcode-mask

Version:
16 lines (15 loc) 452 B
/** * Created by nghinv on Thu Jul 15 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; interface EdgeProps { edgeWidth?: number; edgeHeight?: number; edgeColor?: string; edgeBorderWidth?: number; type: 'Top_Left' | 'Top_Right' | 'Bottom_Left' | 'Bottom_Right'; } declare function Edge(props: EdgeProps): JSX.Element; declare const _default: React.MemoExoticComponent<typeof Edge>; export default _default;