ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Variable InfoOutlineIconConst

    InfoOutlineIcon: FC<SvgIconProps> = ...

    A Material-UI icon component that renders an information icon. This icon is typically used to represent help, information, or details about a feature or item.

    The props passed to the underlying SvgIcon component

    A React component that renders the information icon

    const InfoOutlineIcon: FC<SvgIconProps> = (props) => {
    return (
    <SvgIcon {...props}>
    <svg
    {...props}
    width="24"
    height="24"
    viewBox="0 0 24 24"
    fill="none"
    xmlns="http://www.w3.org/2000/svg"
    >
    <path
    d="M11 7H13V9H11V7ZM11 11H13V17H11V11ZM12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20Z"
    fill="currentColor"
    />
    </svg>
    </SvgIcon>
    );
    };