Sha256: b52c11deb753fa3bdaf47ef265fa9f53f578b7e9bef3d512a7f77fa2bdbbb03e
Contents?: true
Size: 1.3 KB
Versions: 158
Compression:
Stored size: 1.3 KB
Contents
import React from 'react' import Image from '../_image' const DefaultImage = (props: any) => { return ( <> <br /> <div> <Image alt="picture of a misty forest" size="xs" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="picture of a misty forest" size="sm" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="picture of a misty forest" size="md" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="picture of a misty forest" size="lg" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="picture of a misty forest" size="xl" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="picture of a misty forest" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> </> ) } export default DefaultImage
Version data entries
158 entries across 158 versions & 1 rubygems