diff options
Diffstat (limited to 'app/components/button/button.tsx')
-rw-r--r-- | app/components/button/button.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/components/button/button.tsx b/app/components/button/button.tsx index a5662ff..03b8f85 100644 --- a/app/components/button/button.tsx +++ b/app/components/button/button.tsx @@ -1,8 +1,8 @@ -import * as React from "react" -import { TouchableOpacity } from "react-native" -import { Text } from "../text/text" -import { viewPresets, textPresets } from "./button.presets" -import { ButtonProps } from "./button.props" +import * as React from 'react' +import { TouchableOpacity } from 'react-native' +import { Text } from '../text/text' +import { viewPresets, textPresets } from './button.presets' +import { ButtonProps } from './button.props' /** * For your text displaying needs. @@ -12,7 +12,7 @@ import { ButtonProps } from "./button.props" export function Button(props: ButtonProps) { // grab the props const { - preset = "primary", + preset = 'primary', tx, text, style: styleOverride, |