mg-library 1.0.430 → 1.0.431

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/blocks.js CHANGED
@@ -577,4 +577,16 @@ export function MGActivityIndicator(props) {
577
577
  <ActivityIndicator size="large" color={props.theme['color-primary-500']} />
578
578
  </View>
579
579
  )
580
+ }
581
+
582
+ export function MGCardHeader(props) {
583
+ return (
584
+ <>
585
+ <View style={{ flexDirection: 'row', marginVertical: 10, marginLeft: 10 }}>
586
+ <View style={{ flexGrow: 0.95 }}>
587
+ <Text category='h6'>{props.title}</Text>
588
+ </View>
589
+ </View>
590
+ </>
591
+ );
580
592
  }
package/mg-library.rar CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mg-library",
3
- "version": "1.0.430",
3
+ "version": "1.0.431",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {