Sha256: 07a9d700d6604383cbbba2fb2c6833ff7ef69d9b3581a23631332cd45bc6728b
Contents?: true
Size: 1.1 KB
Versions: 1875
Compression:
Stored size: 1.1 KB
Contents
import React from 'react' import Image from '../_image' const RoundedImage = (props) => { return ( <> <br /> <div> <Image alt="" rounded size="xs" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="" rounded size="sm" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="" rounded size="md" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="" rounded size="lg" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> <div> <Image alt="" rounded size="xl" url="https://unsplash.it/500/400/?image=634" {...props} /> </div> </> ) } export default RoundedImage
Version data entries
1,875 entries across 1,875 versions & 2 rubygems