import type { GlobalTheme } from '../global'; const getDividerTheme = (theme: GlobalTheme) => { const colors = { default: theme.colors.secondaryOutline, }; const space = { xsmall: theme.space.xsmall, small: theme.space.small, medium: theme.space.medium, large: theme.space.large, xlarge: theme.space.xlarge, }; const borderWidths = { default: theme.borderWidths.base, }; return { colors, space, borderWidths }; }; export default getDividerTheme;