Adding regular and full with

This commit is contained in:
Belen Curcio
2018-08-02 09:00:18 -03:00
parent 5c7f4b461d
commit 9e2b1aa9e3
2 changed files with 6 additions and 3 deletions
@@ -12,6 +12,7 @@
background-color: transparent;
border: none;
color: var(--palette-common-black);
padding-left: 40px;
}
.colorError {
@@ -3,10 +3,12 @@ name: ValidationMessage
menu: UI Kit
---
import { Playground } from 'docz'
import { Playground, PropsTable} from 'docz'
import ValidationMessage from './ValidationMessage'
import
import Flex from '../Flex'
# ValidationMessage
<PropsTable of={ValidationMessage} />
## Basic Use
<Playground>
@@ -14,7 +16,7 @@ import
<ValidationMessage>Account with this email address already exists. Try another email</ValidationMessage>
<ValidationMessage>Please enter a valid email address</ValidationMessage>
<ValidationMessage color="error">Invalid characters. Try again</ValidationMessage>
<ValidationMessage color="error" fullWidth>Invalid characters. Try again</ValidationMessage>z
<ValidationMessage color="error" fullWidth>Account with this email address already exists. Try another email. </ValidationMessage>
</Flex>
</Playground>