@jetbrains/logos
Version:
JetBrains logos and branding materials
10 lines (9 loc) • 326 B
JavaScript
import * as React from "react";
function KotlinSecondaryLightLogo(props) {
return (
React.createElement( 'svg', Object.assign({}, { fill: "none", viewBox: "0 0 48 48" }, props),
React.createElement( 'path', { fill: "#fff", d: "M48 48H0V0h48L23.505 23.648z" })
)
);
}
export default KotlinSecondaryLightLogo;