UNPKG

@cimpress/react-components

Version:
16 lines 514 B
import React from 'react'; import { LargeIcon, MediumIcon, SmallIcon } from './icons'; import { ocean } from '../../../../colors'; const iconMapping = { small: SmallIcon, medium: MediumIcon, large: LargeIcon, }; export function SpacingHeading({ size, children }) { const Icon = iconMapping[size]; return (React.createElement("h3", null, React.createElement(Icon, { width: 16, height: 16, fill: ocean.base }), " ", children)); } //# sourceMappingURL=SpacingHeading.js.map