Sha256: 2a44a14ba20511f754881604ef0c6a8fbc1baec61cb6935d9e276d1667c7f0ed

Contents?: true

Size: 1.16 KB

Versions: 3

Compression:

Stored size: 1.16 KB

Contents

import React from "react"
import {User} from "../../"

function UserWithTerritory() {
  return (
    <div class="pb--doc-demo-row">

      <div>
        <User
          name='Anna Black'
          territory='PHL'
          title='Remodeling Consultant'
          orientation="vertical"
          align="center"
          size='lg'
          avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
        />
      </div>

      <div>
        <User
          name='Anna Black'
          territory='PHL'
          title='Remodeling Consultant'
          orientation="horizontal"
          align="left"
          avatarUrl="https://randomuser.me/api/portraits/women/44.jpg"
        />
      </div>

      <div>
        <User
          name='Anna Black'
          territory='PHL'
          title='Remodeling Consultant'
          orientation='horizontal'
          align='center'
          size='sm'
        />

        <br/>

        <User
          name='Anna Black'
          territory='PHL'
          title='Remodeling Consultant'
          orientation='horizontal'
          align='left'
          size='lg'
        />
      </div>

    </div>
  )
}

export default UserWithTerritory;

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
playbook_ui-3.1.0 app/pb_kits/playbook/pb_user/docs/_user_with_territory.jsx
playbook_ui-3.0.1 app/pb_kits/playbook/pb_user/docs/_user_with_territory.jsx
playbook_ui-3.0.0 app/pb_kits/playbook/pb_user/docs/_user_with_territory.jsx