/** * SVG Icons Library for React Native Animated Button * * This file exports all available SVG icons from the library. * Add your new icons here after creating them. */ export type { IconProps } from './IconTemplate'; export * from './social/SocialIcons'; export * from './arrows/ArrowIcons'; export * from './actions/ActionIcons'; export * from './common/CommonIcons'; export * from './payment/PaymentIcons'; /** * Usage Examples: * * import { AppleIcon, GoogleIcon, HeartIcon } from 'react-native-animated-button/icons'; * * {}} * customIcon={AppleIcon} * /> * * {}} * customIcon={HeartIcon} * iconSize={20} * /> */