Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export function chunkCssLinks( chunkAssets, isRTL = false ) {
const styleAssets = chunkAssets[ isRTL ? 'css.rtl' : 'css.ltr' ];
return styleAssets.map( ( asset ) => (
<link key={ asset } rel="stylesheet" type="text/css" href={ asset } data-webpack />
) );
}