@jetbrains/logos
Version:
JetBrains logos and branding materials
10 lines (9 loc) • 759 B
JavaScript
import * as React from "react";
function KotlinRetroLogo(props) {
return (
React.createElement( 'svg', Object.assign({}, { viewBox: "0 0 70 70" }, props),
React.createElement( 'path', { d: "M0 58.5v.2C0 64.9 5.2 70 11.6 70s11.6-5.1 11.6-11.3V46.3zm69.9 0c-.2-2.4-1.3-4.7-3-6.4V52L46.1 34.3 26 44.8l26.1 22.6c2 1.7 4.5 2.5 7.1 2.5h.9c2.9-.2 5.5-1.6 7.3-3.7 1.9-2.1 2.8-4.9 2.5-7.7zM23.1 12.8v-1.5C23.1 5.1 17.9 0 11.5 0 5.2 0 0 5.1 0 11.3v13.8zM0 29.9 54.1 1.2C55.7.4 57.4 0 59.2 0c1.1 0 2.2.2 3.3.5 5.7 1.8 8.8 7.7 6.9 13.2-.8 2.3-2.3 4.3-4.4 5.5v.1l-.7.4L0 53.5zm3.2 18.4L62.9 17l.3-.2c1.5-.9 2.5-2.3 3.1-3.9.6-1.8.5-3.9-.5-5.6-.9-1.8-2.5-3-4.4-3.7-.8-.2-1.5-.4-2.3-.4-1.2 0-2.5.3-3.5.9L3.2 31.8z" })
)
);
}
export default KotlinRetroLogo;