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