import type { GlobalTheme } from '../global'; const getRateTheme = (theme: GlobalTheme) => { const colors = { iconStroke: theme.colors.primary, }; const spaces = { iconWrapperPadding: theme.space.small, iconWrapperMarginRight: theme.space.xsmall, }; return { colors, spaces }; }; export default getRateTheme;