primer-react
Version:
Primer react components
28 lines (25 loc) • 554 B
JavaScript
import React from 'react'
import {Block, Flash} from '../../src'
const FlashExample = {
name: 'Flash',
element: (
<div>
<Block mb={3}>
<Flash> Flash </Flash>
</Block>
<Block mb={3}>
<Flash yellow> Flash yellow </Flash>
</Block>
<Block mb={3}>
<Flash red> Flash red </Flash>
</Block>
<Block mb={3}>
<Flash green> Flash green </Flash>
</Block>
<Block mb={3}>
<Flash full> Flash full </Flash>
</Block>
</div>
)
}
export default FlashExample