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