import { StyleSheet } from 'react-native';
import { scaleFontSize, scaleHorizontal } from '../../utils/Utils';
import { grid } from '../../utils/grid';

export const getStyles = () => {
    return StyleSheet.create({
        container: {
            overflow: 'visible',
        },
        text: {
            fontSize: scaleFontSize(11),
            fontWeight: '400',
            textAlign: 'right',
            color: grid.colors.text,
            width: grid.cellWight,
            height: grid.cellHeight,
            paddingRight: scaleHorizontal(7),
            top: -7,
        },
    });
};
