Skip to content

Commit c319998

Browse files
committed
🔨 moved package to root
1 parent 966fd5f commit c319998

File tree

16 files changed

+22
-20
lines changed

16 files changed

+22
-20
lines changed
File renamed without changes.

.gitignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
.vscode/
2-
node_modules/
2+
3+
# Logs
4+
*.log
5+
npm-debug.log
6+
7+
# Runtime data
8+
tmp
9+
build
10+
dist
11+
12+
# Dependency directory
13+
node_modules

src/.npmignore renamed to .npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@ node_modules
77

88
# Runtime data
99
tmp
10+
11+
# example app
12+
TestApp/

src/Buttons/ButtonSolid/ButtonSolid.tsx renamed to Buttons/ButtonSolid/ButtonSolid.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ const ButtonSolid: FunctionComponent<ButtonSolidProps> = ({
7474
},
7575
text: {
7676
textAlign: "center",
77-
fontFamily: "Nunito-Regular",
7877
color: COLORS.WHITE,
7978
},
8079
});
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

TestApp/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import React from 'react';
22
import {SafeAreaView, StyleSheet, Text, View} from 'react-native';
3-
import {ButtonOutline} from 'react-native-ui-buttons';
3+
import {ButtonOutline, ButtonSolid} from 'react-native-ui-buttons';
44

55
const App = (): JSX.Element => {
66
return (
77
<SafeAreaView>
88
<View style={styles.container}>
99
<Text style={styles.heading}>Button Outline</Text>
10-
<ButtonOutline title={'Test Button'} />
10+
<ButtonSolid title={'Test Button'} disabled={true} />
1111
</View>
1212
</SafeAreaView>
1313
);

0 commit comments

Comments
 (0)