import {forwardRef} from 'react'; import {useTheme} from '@emotion/react'; import {Aliases, Color, IconSize} from 'sentry/utils/theme'; export interface SVGIconProps extends React.SVGAttributes { className?: string; color?: Color | keyof Aliases; // TODO (Priscila): make size prop theme icon size only size?: IconSize | string; } export const SvgIcon = forwardRef(function SvgIcon( { color: providedColor = 'currentColor', size: providedSize = 'sm', viewBox = '0 0 16 16', ...props }, ref ) { const theme = useTheme(); const color = theme[providedColor] ?? providedColor; const size = theme.iconSizes[providedSize] ?? providedSize; return ( ); });