Sha256: a3a43393515300b7cf0ca2e5bb34e47e4f360667de560baddd83bc847fd45fe3
Contents?: true
Size: 626 Bytes
Versions: 1646
Compression:
Stored size: 626 Bytes
Contents
import React from 'react' import Card from '../_card' const CardShadow = (props) => { return ( <div> <Card {...props} shadow="none" > {'Card content'} </Card> <br /> <Card {...props} shadow="deep" > {'Card content'} </Card> <br /> <Card {...props} shadow="deeper" > {'Card content'} </Card> <br /> <Card {...props} shadow="deepest" > {'Card content'} </Card> <br /> </div> ) } export default CardShadow
Version data entries
1,646 entries across 1,646 versions & 2 rubygems