CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
defaults.js26 linesDownload Raw Back to icon
1/** Default values for dimensions */2const defaultIconDimensions = Object.freeze({3	left: 0,4	top: 0,5	width: 16,6	height: 167});8/** Default values for transformations */9const defaultIconTransformations = Object.freeze({10	rotate: 0,11	vFlip: false,12	hFlip: false13});14/** Default values for all optional IconifyIcon properties */15const defaultIconProps = Object.freeze({16	...defaultIconDimensions,17	...defaultIconTransformations18});19/** Default values for all properties used in ExtendedIconifyIcon */20const defaultExtendedIconProps = Object.freeze({21	...defaultIconProps,22	body: "",23	hidden: false24});25export { defaultExtendedIconProps, defaultIconDimensions, defaultIconProps, defaultIconTransformations };26 
basant307/AI_Governance_Project · CoolFace