import React from 'react'
import BrandText from './BrandText'

/**
 * @see See [BrandText](#brandtext) for API. Sets `type` prop to `warning`.
 */
const WarningText = props => <BrandText {...props} type="warning" />

export default WarningText
