diff --git a/package.json b/package.json index b4b10e1..778dbc4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-hook-notification", - "version": "2.2.0", + "version": "2.2.1", "license": "MIT", "main": "dist/main/index.js", "typings": "dist/main/index.d.ts", diff --git a/src/presentation/components/Notification/styles.ts b/src/presentation/components/Notification/styles.ts index ae7042f..7f2f8c3 100644 --- a/src/presentation/components/Notification/styles.ts +++ b/src/presentation/components/Notification/styles.ts @@ -114,14 +114,14 @@ export const styles = StyleSheet.create({ }, title: { - fontSize: 15, - lineHeight: 18, + fontSize: 16, + lineHeight: 20, marginBottom: 8, fontWeight: 'bold', }, text: { - fontSize: 14, + fontSize: 16, lineHeight: 20, }, diff --git a/storybook/stories/Notification/Notification.stories.tsx b/storybook/stories/Notification/Notification.stories.tsx index 4046dee..4d9c1a5 100644 --- a/storybook/stories/Notification/Notification.stories.tsx +++ b/storybook/stories/Notification/Notification.stories.tsx @@ -18,8 +18,8 @@ const App = (): JSX.Element => { const onDispatchNotification = (): void => { notification.warning({ - title: 'Hey there!', - text: "I'm using react-native-hook-notification ❤️", + title: "I'm using react-native-hook-notification ❤️", + text: "I'm using react-native-hook-notification ❤️ I'm using react-native-hook-notification ❤️", }); };