import React from 'react'; interface OpenFrameTextProps extends React.SVGProps { className?: string; textColor?: string; } /** @deprecated Use icons from icons-v2-generated instead. */ export const OpenFrameText = ({ className, textColor = '#1A1A1A', ...props }: OpenFrameTextProps) => { return ( ); };