import React from "react"; type TProps = { textButton: string onClick?: () => void type?: 'submit' | 'button' width?: '100%' | string } export const PinkButton:React.FC = React.memo((props) => { return })