import type { IconNameType } from '../../assets'; import { Button, type ButtonProps } from './Button'; export type Text1ButtonProps = Omit< ButtonProps, 'buttonStyle' | 'contentType' | 'text' > & { text: string; }; export function Text1Button(props: Text1ButtonProps) { return (