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