1234567891011121314151617181920212223242526272829 |
- import { StyleSheet} from 'react-native'
- import React from 'react'
- import colors from '../../../theme/colors'
- import fonts from '../../../theme/fonts'
- import IonIcon from 'react-native-vector-icons/Ionicons'
- import ButtonWrapper from '../../atoms/ButtonWrapper'
- const BookmarkButton = ({ buttonStyle,iconSize,iconColor, onPress}) => {
- return (
- <ButtonWrapper onPress={onPress} buttonStyle={buttonStyle}>
- <IonIcon name='ios-bookmark-outline' color={iconColor ? iconColor : styles.icon.color} size={iconSize ? iconSize : styles.icon.fontSize}/>
- </ButtonWrapper>
- )
- }
- export default BookmarkButton
- const styles = StyleSheet.create({
- buttonStyle:{
- alignItems: 'center',
- justifyContent: 'center',
- height:'auto',
- width:'auto'
- },
- icon:{
- color: colors.topColor,
- fontSize: fonts.getSize(16)
- }
- })
|