import type { ReactNode, SVGProps } from "react"; export type DrainageFeatureIconProps = SVGProps & { size?: number; }; type DrainageIconFrameProps = DrainageFeatureIconProps & { children: ReactNode; }; function DrainageIconFrame({ children, size = 20, ...props }: DrainageIconFrameProps) { return ( {children} ); } export function ConduitFeatureIcon(props: DrainageFeatureIconProps) { return ( ); } export function JunctionFeatureIcon(props: DrainageFeatureIconProps) { return ( ); } export function ScadaFeatureIcon(props: DrainageFeatureIconProps) { return ( ); } export function OrificeFeatureIcon(props: DrainageFeatureIconProps) { return ( ); } export function PumpFeatureIcon(props: DrainageFeatureIconProps) { return ( ); } export function OutfallFeatureIcon(props: DrainageFeatureIconProps) { return ( ); }