diff --git a/components/button.md b/components/button.md
index ab502c3..5fbf0b1 100644
--- a/components/button.md
+++ b/components/button.md
@@ -16,8 +16,9 @@ import { Button } from 'react-native-material-design';
render() {
return (
-
);
}
@@ -28,25 +29,33 @@ render() {
Prop | Type | Description | Required | Default
--- | --- | --- | --- | ---
-value | string | The text which is rendered inside of the button | true |
+text | string | The text which is rendered inside of the button | true |
theme | [THEME_NAME](/api/theme_name) | | false | light
primary | [PRIMARY_COLORS](/api/primary_colors) | | false | [PRIMARY](/api/primary)
overrides *textColor* *backgroundColor* *rippleColor* | object *string* *string* *string* | An object to override any colors *Override the text color of the button* *Override the background color of the button* *Override the ripple color of the button* | false
|
disabled | bool | Whether to render the button as disabled. This will prevent any onPress props being triggered | false | false
onPress | func | A function which is called when the touch of the button is released | false |
onLongPress | func | A function which is called when the touch of the button is held for a long duration | false |
+raised | bool | | false | false
## Examples
### Group Buttons
```
-
+
-
+ //**NOTE: primary only changes the text and not the color of the button at the moment.
+
+
+
+ console.log("IT LOOKS GOOD!")}/>
```