Sha256: 1f803ec6fe25fc0a07a265fb73443c26d5edcf33ead7282353e2b03dd3caf1db

Contents?: true

Size: 1.16 KB

Versions: 8

Compression:

Stored size: 1.16 KB

Contents

/* @flow */
import React from 'react'
import classnames from 'classnames'
import Title from '../pb_title/_title.jsx'
import Icon from '../pb_icon/_icon.jsx'
import Avatar from '../pb_avatar/_avatar.jsx'

type FormPillProps = {

className?: String,
id?: String,
text: String,
name: String,
onClick?: EventHandler,
avatar?: Boolean,
avatarUrl?: String,
}
const FormPill = ({
  className,
  text,
  name,
  onClick = () => {},
  avatarUrl,
}: FormPillProps) => {
  const css = classnames([
    `pb_form_pill_kit_${'primary'}`,
    className,
  ])
  return (
    <div className={css}>
      <If condition={name}>
        <Avatar
            imageUrl={avatarUrl}
            name={name}
            size="xs"
        />
        <Title
            className="pb_form_pill_text"
            size={4}
            text={name}
        />
      </If>
      <If condition={text}>
        <Title
            className="pb_form_pill_tag"
            size={4}
            text={text}
        />
      </If>
      <div className="pb_form_pill_close">
        <Icon
            fixedWidth
            icon="times"
            onClick={onClick}
        />
      </div>
    </div>
  )
}
export default FormPill

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
playbook_ui-4.10.0 app/pb_kits/playbook/pb_form_pill/_form_pill.jsx
playbook_ui-4.10.0.pre.alpha1 app/pb_kits/playbook/pb_form_pill/_form_pill.jsx
playbook_ui-4.9.0.pre.alpha1 app/pb_kits/playbook/pb_form_pill/_form_pill.jsx
playbook_ui-4.9.0 app/pb_kits/playbook/pb_form_pill/_form_pill.jsx
playbook_ui-4.8.2 app/pb_kits/playbook/pb_form_pill/_form_pill.jsx
playbook_ui-4.8.1 app/pb_kits/playbook/pb_form_pill/_form_pill.jsx
playbook_ui-4.7.1 app/pb_kits/playbook/pb_form_pill/_form_pill.jsx
playbook_ui-4.7.0 app/pb_kits/playbook/pb_form_pill/_form_pill.jsx