Sha256: fefe63a9ff01a09fe629e4f18d12d649edbcd17139f2484b431ec8ddb56c6cbf
Contents?: true
Size: 918 Bytes
Versions: 85
Compression:
Stored size: 918 Bytes
Contents
import React from 'react' import { Image } from '../../' const RoundedImage = (props) => { return ( <> <Image alt="" rounded size="xs" url="https://unsplash.it/500/400/?image=634" {...props} /> <Image alt="" rounded size="sm" url="https://unsplash.it/500/400/?image=634" {...props} /> <Image alt="" rounded size="md" url="https://unsplash.it/500/400/?image=634" {...props} /> <Image alt="" rounded size="lg" url="https://unsplash.it/500/400/?image=634" {...props} /> <Image alt="" rounded size="xl" url="https://unsplash.it/500/400/?image=634" {...props} /> </> ) } export default RoundedImage
Version data entries
85 entries across 85 versions & 1 rubygems