import React from 'react'; type SpacePreviewIconProps = { width?: number; height?: number; color?: string; }; export const SpacePreviewIcon = ({ width = 14, height = 18, color = '#E2E2E5', }: SpacePreviewIconProps) => ( );