import * as React from 'react';

export function InlineSvg({
  fileRawContent,
  className,
}: {
  fileRawContent: string;
  className?: string;
}) {
  return (
    <span
      className={className}
      data-component-name="Markdoc/InlineSvg/InlineSvg"
      dangerouslySetInnerHTML={{ __html: fileRawContent }}
    />
  );
}
