@hoddy-ui/core 1.0.27 → 1.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hoddy-ui/core",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "description": "Core rich react native components written in typescript",
5
5
  "main": "index.ts",
6
6
  "repository": {
@@ -77,6 +77,7 @@ export const ListItem: React.FC<ListItemProps> = ({
77
77
  {link && (
78
78
  <MaterialIcons
79
79
  color={colors.white[5]}
80
+ style={{ marginLeft: "auto" }}
80
81
  name="arrow-forward-ios"
81
82
  size={15}
82
83
  />
package/src/types.ts CHANGED
@@ -117,7 +117,7 @@ export interface FlashMessageProps {
117
117
  }
118
118
  export interface LinkButtonProps {
119
119
  title: string;
120
- style?: ViewStyle;
120
+ style?: TextStyle & ViewStyle;
121
121
  color?: colorTypes;
122
122
  fontSize?: number;
123
123
  fontWeight?: string;