@cimpress/react-components
Version:
React components to support the MCP styleguide
16 lines • 514 B
JavaScript
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