BookmarkButton.js 534 B

1234567891011121314151617181920
  1. import { StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import { IconButton } from 'react-native-paper'
  4. import colors from '../../../theme/colors'
  5. import fonts from '../../../theme/fonts'
  6. const BookmarkButton = ({ size, onPress}) => {
  7. return (
  8. <IconButton
  9. icon='bookmark-outline'
  10. iconColor={colors.topColor}
  11. size={size ?? fonts.getSize(24)}
  12. onPress={onPress}
  13. />
  14. )
  15. }
  16. export default BookmarkButton
  17. // const styles = StyleSheet.create({})