Sha256: 2b7bd4479c7c3f596c3c9c9f12d86ac84e274ad728e111a4f4f72312f5fc6a3d
Contents?: true
Size: 627 Bytes
Versions: 170
Compression:
Stored size: 627 Bytes
Contents
import React from 'react' import { Card } from '../../' 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
170 entries across 170 versions & 1 rubygems