You need to define the Props type first.
type PropsType = { handleDrawerToggle: () => void; // function prop drawerWidth: number } const Sample: React.FC<PropsType> = ({ handleDrawerToggle, drawerWidth }) => {.....}