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