Sha256: db37e7c87d61189efc960b2b2c8e9c17037dfc77207e29d50b905208a50125ce
Contents?: true
Size: 977 Bytes
Versions: 969
Compression:
Stored size: 977 Bytes
Contents
import React from 'react' import { Avatar } from '../../' const AvatarNoImage = (props) => { return ( <div> <Avatar imageUrl="Just some text here" name="Terry Johnson" size="xxs" {...props} /> <Avatar imageUrl="Just some text here" name="Terry Johnson" size="xs" {...props} /> <Avatar imageUrl={4} name="Terry Johnson" size="sm" {...props} /> <Avatar imageUrl="https://google.com" name="Terry Johnson" size="md" {...props} /> <Avatar imageUrl="" name="Terry Johnson" size="lg" {...props} /> <Avatar imageUrl="https://randomuser.me/api/portraits/men/notapicture.jpg" name="Terry Johnson" size="xl" {...props} /> </div> ) } export default AvatarNoImage
Version data entries
969 entries across 969 versions & 2 rubygems