import * as React from 'react'; export interface HorizontalDivider64Props extends React.SVGProps { ariaLabel?: string } export default function HorizontalDivider64({ ariaLabel, ...props }: HorizontalDivider64Props) { return ( ); }