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