Sha256: a3f104bac1d81ff9644de47eacd0f8a84b82b51ede7e4ebad7c450e5bc7b7853

Contents?: true

Size: 615 Bytes

Versions: 170

Compression:

Stored size: 615 Bytes

Contents

import React from 'react'
import { Card } from '../../'

const CardHighlight = (props) => {
  return (
    <div>
      <Card
          {...props}
          highlight={{ position: 'side', color: 'windows' }}
      >
        {'Card content'}
      </Card>

      <br />

      <Card
          {...props}
          highlight={{ position: 'top', color: 'warning' }}
      >
        {'Card content'}
      </Card>

      <br />

      <Card
          {...props}
          highlight={{ position: 'side', color: 'category_2' }}
      >
        {'Card content'}
      </Card>
    </div>
  )
}

export default CardHighlight

Version data entries

170 entries across 170 versions & 1 rubygems

Version Path
playbook_ui-7.0.1.pre.alpha10 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha9 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha8 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha7 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha6 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha5 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha4 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha3 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha2 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx
playbook_ui-7.0.1.pre.alpha1 app/pb_kits/playbook/pb_card/docs/_card_highlight.jsx