Skip to content

Commit

Permalink
Merge pull request #6202 from saikiransomanagoudar/feat/add-feature-l…
Browse files Browse the repository at this point in the history
…ist-bullets

feat: add bullet points to integrations feature list section
  • Loading branch information
sudhanshutech authored Jan 25, 2025
2 parents 7d0c067 + 77e611a commit a0e5741
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import RelatedIntegration from "../IntegrationsGrid";
import HowMesheryWorksSpecs from "../../../../components/specs";
import ModelComponents from "./ComponentsGrid";
import CatalogGrid from "./CatalogGrid";
import { ReactComponent as MesheryLogoBullet } from "../../../../assets/images/meshery/icon-only/meshery-logo-light.svg";

const IndividualIntegrations = ({ data }) => {
const { frontmatter, body } = data.mdx;
Expand Down Expand Up @@ -73,7 +74,17 @@ const IndividualIntegrations = ({ data }) => {
<h2>Features</h2>
<ul>
{frontmatter.featureList.map((feature, indx) => (
<li key={indx}>{feature}</li>
<li key={indx}>
<MesheryLogoBullet
style={{
width: "10px",
height: "10px",
minWidth: "10px",
marginRight: "16px",
}}
/>
{feature}
</li>
))}
</ul>
</div>
Expand Down

0 comments on commit a0e5741

Please sign in to comment.