import * as React from 'react'
import {Box} from './box'
import * as Styles from '../styles'
const long = 22
const small = 4
const padding = 5
const BadLines = () => null
// Note: duplicating the lines here vs a series of maps / permutations so its more readable
const GoodLines = ({color}: {color: Styles.Color}) => {
const s = [styles.common, {backgroundColor: color}]
return (
<>
>
)
}
const QRScanLines = ({canScan, color}: {canScan: boolean; color?: Styles.Color}) =>
canScan ? :
const styles = Styles.styleSheetCreate(() => ({
common: {position: 'absolute'},
}))
export default QRScanLines