Added CodeEmbed component to embed code snippets in markdowns

This commit is contained in:
amithkoujalgi
2025-04-18 12:15:49 +05:30
parent 2b036c8a62
commit 9c181486a5
13 changed files with 233 additions and 221 deletions

View File

@@ -0,0 +1,9 @@
// @site/src/components/Icon.js
import React from 'react';
import { Icon as IconifyIcon } from '@iconify/react';
const IIcon = ({ icon, color, width = '24', height = '24' }) => (
<IconifyIcon icon={icon} color={color} width={width} height={height} />
);
export default IIcon;