Sha256: 85cacfadcf328d81090a71b44486182278efd123e3ec2c5a96bf2b548854c32e
Contents?: true
Size: 1.16 KB
Versions: 911
Compression:
Stored size: 1.16 KB
Contents
import React, { Fragment as F } from 'react' import { Background } from '../..' const BackgroundSize = (props) => ( <F> <Background alt="colorful background" backgroundSize="auto" className="background lazyload" imageUrl="https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1000&q=80" padding="xl" {...props} /> <br/> <Background alt="colorful background" backgroundSize="cover" className="background lazyload" imageUrl="https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1000&q=80" padding="xl" {...props} /> <br/> <Background alt="colorful background" backgroundRepeat="no-repeat" backgroundSize="contain" className="background lazyload" imageUrl="https://images.unsplash.com/photo-1528459801416-a9e53bbf4e17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1000&q=80" padding="xl" {...props} /> </F> ) export default BackgroundSize
Version data entries
911 entries across 911 versions & 2 rubygems