/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * Single icon surface for the DevUI, backed by lucide-react. Icons are imported * by name (tree-shaken) and exposed through a small kebab-case map so call sites * stay terse: . */ import React from 'react'; interface IconProps { name: string; size?: number; color?: string; strokeWidth?: number; style?: React.CSSProperties; } export declare const Icon: React.FC; export {}; //# sourceMappingURL=icon.d.ts.map