-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* text overflow update * text overflow update * text overflow update * ocean interface update * ocean interface update * section title
- Loading branch information
1 parent
9f8d63d
commit 416ee24
Showing
8 changed files
with
177 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
app/components/OceanInterface/__snapshots__/OceanInterface.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react' | ||
import { Text } from 'react-native' | ||
import tailwind from 'tailwind-rn' | ||
|
||
export function SectionTitle ({ text, testID }: { text: string, testID: string }): JSX.Element { | ||
return ( | ||
<Text | ||
testID={testID} | ||
style={[tailwind('p-4 text-xs text-gray-500 font-bold mt-2')]} | ||
> | ||
{ | ||
text | ||
} | ||
</Text> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.