First always be lazy. A google search of the form “fritzing part 7432” leads to a pre existing (but not in core parts!) post in the forums here that has the 7432 as a multipart part (multipart means that the individual logic gate can be moved independently which is useful in logic.)
That said the only errors FritzingCheckPart.py (which checks parts for errors and can be found in this tutorial on parts making which you may have already seen as references to it are often posted here)
indicates are the ones that @KjellM has already noted the missing layerIds which will cause the part to not export as an image.
$ FritzingCheckPartw.py part.SN74HC32N_ewo_1.fzp
**** Starting to process file Startup, no file yet
**** Starting to process file part.SN74HC32N_ewo_1.fzp
**** Starting to process file svg.breadboard.SN74HC32N_ewo_1_breadboard.svg.bak
**** Starting to process file svg.schematic.SN74HC32N_ewo_1_schematic.svg.bak
**** Starting to process file svg.pcb.SN74HC32N_ewo_1_pcb.svg.bak
File
‘part.SN74HC32N_ewo_1.fzp.bak’
This is a through hole part as both copper0 and copper1 views are present.
If you wanted a smd part remove the copper0 definition from line 44
Modified 3: File
‘svg.pcb.SN74HC32N_ewo_1_pcb.svg.bak’
At line 44
Silkscreen, converted stoke from white to black
Warning 4: File
‘part.SN74HC32N_ewo_1.fzp.bak’
At line 3
No referenceFile found in fzp file
Error 69: File
‘svg.breadboard.SN74HC32N_ewo_1_breadboard.svg.bak’
At line 26
Found a drawing element before a layerId (or no layerId)
Error 69: File
‘svg.schematic.SN74HC32N_ewo_1_schematic.svg.bak’
At line 36
Found a drawing element before a layerId (or no layerId)
It didn’t need to remove pxs from the svgs (which are added for CSS compliance but cause Fritzing to either set the font size large or to 0).
edit
In addition I forgot I made a couple of parts for the pico w, I think the RPI site only wanted the THT version so the forums are probably the only place to find the SMD version if that is what you want. The parts are here
Looking for Raspberry Pi PICO part - #49 by vanepp
Peter