Sha256: d13390664f0609264209b62cc152c900710314fece65d5704dac99ce20dd840c

Contents?: true

Size: 451 Bytes

Versions: 2

Compression:

Stored size: 451 Bytes

Contents

import React from "react"
import Card from "../_card"

const CardLight = (props) => {
  return (
    <div>
      <Card
          height="100%"
          htmlOptions={{
            style: {
              width: "100%",
              backgroundColor: "blue",
            },
            tabIndex: 7
          }}
          minHeight="189px"
          {...props}
      >
        {"HELLO WORLD!!!"}
      </Card>
    </div>
  )
}

export default CardLight

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
playbook_ui_docs-14.6.2.pre.alpha.PLAY15814348 app/pb_kits/playbook/pb_card/docs/_card_light.jsx
playbook_ui-14.6.2.pre.alpha.PLAY15814348 app/pb_kits/playbook/pb_card/docs/_card_light.jsx