/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {FunctionComponent} from 'preact'; /* eslint-disable max-len */ const SummaryIcon: FunctionComponent = () => { return ( ); }; const NavigationIcon: FunctionComponent = () => { return ( ); }; const TimespanIcon: FunctionComponent = () => { return ( ); }; const SnapshotIcon: FunctionComponent = () => { return ( ); }; const CloseIcon: FunctionComponent = () => { return ( ); }; const EnvIcon: FunctionComponent = () => { return ( ); }; const NetworkIcon: FunctionComponent = () => { return ( ); }; const CpuIcon: FunctionComponent = () => { return ( ); }; const HamburgerIcon: FunctionComponent = () => { return ( ); }; const InfoIcon: FunctionComponent = () => { return ( ); }; export { SummaryIcon, NavigationIcon, TimespanIcon, SnapshotIcon, CloseIcon, EnvIcon, NetworkIcon, CpuIcon, HamburgerIcon, InfoIcon, };