import type { JsxHtmlGlobalProps } from "@ribajs/jsx";

export interface JsxBs5IconProps extends JsxHtmlGlobalProps {
  size?: number;
  width?: number;
  height?: number;
  src: string;
  color?: string;
  direction?: string;
  alt?: string;
}
