import React from 'react'; interface ImagingProps { isTablet: boolean; } export default function ImagingIcon({ isTablet }: ImagingProps) { const size = isTablet ? 40 : 24; return ( ); }