Documents
performance-comparsion.en-US
performance-comparsion.en-US
Type
External
Status
Published
Created
Jun 12, 2026
Updated
Jun 12, 2026
Source
View

Performance Comparison of CSS-in-JS#

Basic Rendering Performance Comparison#

import { FullscreenOutlined } from '@ant-design/icons';
import { Button } from 'antd';

export default () => (
  <a href="https://cssinjs-benchmark.arvinx.app/large-content" target={'_blank'}>
    <Button type={'primary'} icon={<FullscreenOutlined />}>
      Click to view in full screen
    </Button>
  </a>
);

Dynamic Value Rendering Performance Comparison#

import { FullscreenOutlined } from '@ant-design/icons';
import { Button } from 'antd';

export default () => (
  <a href="https://cssinjs-benchmark.arvinx.app/dynamic-value" target={'_blank'}>
    <Button icon={<FullscreenOutlined />}>Click to view in full screen</Button>
  </a>
);