36 lines
857 B
TypeScript
36 lines
857 B
TypeScript
import React from 'react';
|
|
import Svg, { Path, Rect } from 'react-native-svg';
|
|
import { ViewStyle } from 'react-native';
|
|
|
|
interface IconProps {
|
|
size?: number;
|
|
color?: string;
|
|
style?: ViewStyle;
|
|
}
|
|
|
|
export const ClipboardIcon: React.FC<IconProps> = ({ size = 24, color = '#666', style }) => {
|
|
return (
|
|
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none" style={style}>
|
|
<Path
|
|
d="M16 4h2a2 2 0 012 2v14a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h2"
|
|
stroke={color}
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<Rect
|
|
x="8"
|
|
y="2"
|
|
width="8"
|
|
height="4"
|
|
rx="1"
|
|
stroke={color}
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</Svg>
|
|
);
|
|
};
|
|
export default ClipboardIcon;
|