import type { ReactNode, SVGProps } from "react"; export type SupplyFeatureIconProps = SVGProps & { size?: number; }; type SupplyIconFrameProps = SupplyFeatureIconProps & { children: ReactNode; }; function SupplyIconFrame({ children, size = 20, ...props }: SupplyIconFrameProps) { return ( {children} ); } export function PipeFeatureIcon(props: SupplyFeatureIconProps) { return ( ); } export function JunctionFeatureIcon(props: SupplyFeatureIconProps) { return ( ); } export function ValveFeatureIcon(props: SupplyFeatureIconProps) { return ( ); } export function ReservoirFeatureIcon(props: SupplyFeatureIconProps) { return ( ); } export function ScadaFeatureIcon(props: SupplyFeatureIconProps) { return ( ); } export function PumpFeatureIcon(props: SupplyFeatureIconProps) { return ( ); }