Sha256: df7e25434d0873ea5d3a05f611a3f29faff12fd83e2dc3c10b17fae19cf11904
Contents?: true
Size: 719 Bytes
Versions: 1716
Compression:
Stored size: 719 Bytes
Contents
import React from 'react' import Card from '../_card' const CardHighlight = (props) => { return ( <div> <Card {...props} highlight={{ position: 'side', color: 'product_6_highlight' }} marginBottom="sm" > {'Side Position & Product 6 Highlight Color'} </Card> <Card {...props} highlight={{ position: 'top', color: 'warning' }} marginBottom="sm" > {'Top Position & Warning Color'} </Card> <Card {...props} highlight={{ position: 'side', color: 'category_2' }} > {'Side Position & Category 2 Color'} </Card> </div> ) } export default CardHighlight
Version data entries
1,716 entries across 1,716 versions & 2 rubygems