@krowdy/kds-assets
Version:
React components that implement Google's Material Design.
18 lines (16 loc) • 480 B
JavaScript
import React from 'react';
export const WIDTH = 406;
export const HEIGHT = 305;
export const aspect = WIDTH / HEIGHT;
const Svg = ({
children,
width,
height,
viewBox
}) => /*#__PURE__*/React.createElement("svg", {
fill: "none",
height: height && width ? height : width ? width * 1 / aspect : height || HEIGHT,
viewBox: viewBox ? viewBox : '0 0 406 305',
width: height && width ? width : height ? height * aspect : width || WIDTH
}, children);
export default Svg;