import React, { HTMLAttributes } from 'react'; export type ArrowUpIconProps = Omit< HTMLAttributes, 'xmlns' | 'children' | 'viewBox' >; /* eslint-disable max-len */ /** * @see https://icons.getbootstrap.com/icons/arrow-up/ */ export function ArrowUpIcon(props: ArrowUpIconProps): JSX.Element { return ( ); } /* eslint-enable max-len */