@nexusui/branding
Version:
This package contains branding elements for NexusUI applications, including logos for each unique product line. These icons work the same as basic SVG icons in React.
8 lines (5 loc) • 2.88 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { memo } from 'react';
const SvgHome = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 22 24", ...props, children: [jsx("path", { fill: "#fff", d: "M16.702 5.943c.282.297.475.676.553 1.09.08.413.04.842-.11 1.233-.151.39-.408.723-.737.958-.33.235-.718.36-1.114.36-.397 0-.785-.125-1.115-.36a2.107 2.107 0 0 1-.737-.958c-.15-.39-.19-.82-.11-1.233.079-.414.271-.793.553-1.09a1.943 1.943 0 0 1 1.409-.616c.527 0 1.033.222 1.408.616ZM8.115 5.943c.282.297.474.676.553 1.09.079.413.04.842-.11 1.233-.151.39-.408.723-.738.958s-.717.36-1.114.36c-.397 0-.784-.125-1.114-.36a2.107 2.107 0 0 1-.737-.958c-.151-.39-.19-.82-.11-1.233.078-.414.27-.793.553-1.09a1.943 1.943 0 0 1 1.408-.616c.528 0 1.034.222 1.409.616ZM3.822 1.366c.282.297.475.676.553 1.09.08.413.04.842-.11 1.232-.151.39-.408.724-.737.959-.33.235-.718.36-1.114.36-.397 0-.785-.125-1.115-.36a2.107 2.107 0 0 1-.737-.959c-.15-.39-.19-.819-.11-1.233.079-.413.271-.792.553-1.089A1.943 1.943 0 0 1 2.414.75c.527 0 1.033.221 1.408.616Z" }), jsx("path", { fill: "#A5D867", d: "M12.41 10.51c.282.297.474.677.552 1.09.079.413.04.842-.11 1.232-.152.39-.408.724-.738.958-.33.235-.717.36-1.114.36-.396 0-.784-.125-1.114-.36a2.106 2.106 0 0 1-.737-.958 2.254 2.254 0 0 1-.11-1.232c.078-.413.27-.793.551-1.09A1.942 1.942 0 0 1 11 9.893c.528 0 1.035.222 1.41.617Z" }), jsx("path", { fill: "#fff", d: "M20.995 1.366c.281.297.474.676.553 1.09.079.413.04.842-.11 1.232-.151.39-.408.724-.738.959s-.717.36-1.114.36c-.397 0-.784-.125-1.114-.36a2.107 2.107 0 0 1-.737-.959c-.151-.39-.19-.819-.11-1.233.078-.413.27-.792.553-1.089A1.943 1.943 0 0 1 19.586.75c.528 0 1.034.221 1.409.616ZM5.298 18.068a2.173 2.173 0 0 1-.554-1.09 2.254 2.254 0 0 1 .11-1.232c.152-.39.408-.724.738-.959.33-.234.717-.36 1.114-.36.397 0 .785.126 1.114.36.33.235.587.569.737.96.151.39.19.818.111 1.232a2.172 2.172 0 0 1-.553 1.09 1.943 1.943 0 0 1-1.409.615 1.943 1.943 0 0 1-1.408-.616ZM13.885 18.068a2.172 2.172 0 0 1-.553-1.09 2.254 2.254 0 0 1 .11-1.232c.151-.39.408-.724.737-.959.33-.234.718-.36 1.115-.36.396 0 .784.126 1.114.36.33.235.586.569.737.96.15.39.19.818.11 1.232a2.172 2.172 0 0 1-.553 1.09 1.943 1.943 0 0 1-1.408.615 1.943 1.943 0 0 1-1.409-.616ZM18.178 22.634a2.173 2.173 0 0 1-.554-1.09 2.254 2.254 0 0 1 .11-1.232c.152-.39.408-.724.738-.959s.717-.36 1.114-.36c.397 0 .785.125 1.114.36.33.235.587.569.738.959.15.39.189.819.11 1.232a2.172 2.172 0 0 1-.553 1.09 1.943 1.943 0 0 1-1.409.616 1.943 1.943 0 0 1-1.408-.616ZM1.005 22.634a2.172 2.172 0 0 1-.553-1.09 2.254 2.254 0 0 1 .11-1.232c.151-.39.408-.724.737-.959.33-.235.718-.36 1.115-.36.396 0 .784.125 1.114.36.33.235.586.569.737.959.15.39.19.819.11 1.232a2.172 2.172 0 0 1-.553 1.09 1.943 1.943 0 0 1-1.408.616 1.943 1.943 0 0 1-1.409-.616Z" })] }));
const Memo = memo(SvgHome);
export { Memo as default };