Sha256: dde18d75f0f4f333d683df62d8786af9afa343bbdf84c060aa3e498280cd8975
Contents?: true
Size: 614 Bytes
Versions: 203
Compression:
Stored size: 614 Bytes
Contents
import React from 'react' import Card from '../_card' 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
203 entries across 203 versions & 1 rubygems