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