*Ant Design - a design system for enterprise-level products (https://ant.design/)
Do you know where i can find className's list of all antd components?
For example: there is a component <Form/> in antd , so, it's className is: .ant-form. (in global styles)
Where i can find all component's classNames?
And can i see all styles of ant design ? (online/download)
Thank you!
If you need it to change the styles then there is a way to do it without knowing classNames.. https://ant.design/docs/react/customize-theme check this out. you can change default style using less preprocessor & craco... or if you really want classNames list than you have to download any frontend project that is made in antdesign. I hope there you can find files with all classNames if it is well developed.
Ant design use less (css pre-processor) so if you can explore this code go to Github: less for ant design form
or if you need view the css procesed explore code in node_modules, here is a screenshot