import { FunctionComponent } from 'react'; import { TListProps } from './types'; import { ctw } from '../../../utils/ctw/ctw'; /** * @description To be used by {@link ImageViewer}. Uses a ul element to display a list of images with default styling. * * @param props * @param props.children - Expects {@link ImageViewer.Item} components. * @constructor */ export const List: FunctionComponent = ({ children, className, ...rest }) => { return ( ); };