import { StyleSheet } from 'react-native';
import { grid } from '../../utils/grid';

export const getStyles = () => {
    return StyleSheet.create({
        container: {
            position: 'absolute',
            width: '100%',
            height: '100%',
        },
        zebraWrapper: {
            position: 'absolute',
            alignItems: 'center',
            justifyContent: 'center',
            width: grid.cellWight,
            height: grid.cellHeight,
            backgroundColor: grid.colors.primary,
            overflow: 'hidden',
        },
    })
}  