@hoddy-ui/core 1.0.76 → 1.0.77

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.76",
3
+ "version": "1.0.77",
4
4
  "description": "Core rich react native components written in typescript",
5
5
  "main": "index.ts",
6
6
  "repository": {
@@ -57,7 +57,7 @@ export const RatingInput: FC<RatingInputProps> = ({
57
57
  inputCon: {
58
58
  marginBottom: "20@vs",
59
59
  backgroundColor: colors.white[3],
60
- padding: "15@ms",
60
+ padding: "10@ms",
61
61
  borderRadius: 20,
62
62
  },
63
63
  input: {
@@ -135,6 +135,7 @@ export const RatingInput: FC<RatingInputProps> = ({
135
135
  <TextInput
136
136
  style={styles.input}
137
137
  multiline
138
+ placeholderTextColor={colors.textSecondary.main}
138
139
  value={review}
139
140
  onChangeText={(text) => setReview(text)}
140
141
  placeholder="Type review here.."