///
/**
* The Icon component is used to display icons. Add paths as children cause the default wrapper of the Icon component is the "SVG" tag.
*
*```tsx
* import * as React from "react"
* import * as System from "@harborschool/lighthouse"
* import { useTheme } from "@harborschool/lighthouse"
*
* export default () => {
* const theme = useTheme()
*
* return (
*
*
*
* )
* }
* ```
* @param width - string | number
* @param height - string | number
* @param viewBox - string
* @param color - string
* @param align - "center" | "left" | "right"
* @param children - React.ReactNode
*/
export declare const Icon: React.FC;
declare const Icons: {
Menu: import("react").FC;
DivMenu: import("react").FC;
ExternalLink: import("react").FC;
Arrow: import("react").FC;
Lock: import("react").FC;
Symbol: import("react").FC;
};
export { Icons };
export * from "./types";
import { IconPropsT } from "./types";