mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-18 07:12:18 +00:00
23 lines
542 B
TypeScript
23 lines
542 B
TypeScript
import React from 'react';
|
|
import { Image, StyleSheet } from 'react-native';
|
|
|
|
interface SimklIconProps {
|
|
size?: number;
|
|
color?: string;
|
|
style?: any;
|
|
}
|
|
|
|
const SimklIcon: React.FC<SimklIconProps> = ({ size = 24, color = '#000000', style }) => {
|
|
return (
|
|
<Image
|
|
source={require('../../../assets/simkl-favicon.png')}
|
|
style={[
|
|
{ width: size, height: size, flex: 1 },
|
|
style
|
|
]}
|
|
resizeMode="cover"
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default SimklIcon;
|