@if not is-null($grid-property-cell-background-image) {
    .#{$prefix}grid-cell-inner-property-name {
        background-image: theme-background-image($grid-property-cell-background-image);
        background-repeat: no-repeat;
        @if not is-null($grid-property-cell-background-position) {
            background-position: $grid-property-cell-background-position;
        }
        @if not is-null($grid-property-cell-before-padding) {
            padding-left: $grid-property-cell-before-padding;
        }
    }
}