ant-design/components/slider/demo/component-token.tsx
lijianan e8fa5938ab
site: rewrite with CSS logical properties (#50109)
* site: use CSS logical properties

* Update components/anchor/demo/targetOffset.tsx

Co-authored-by: afc163 <afc163@gmail.com>
Signed-off-by: lijianan <574980606@qq.com>

* fix: fix

* fix: fix

* chore: fix

* fix: add more

* fix: add more

---------

Signed-off-by: lijianan <574980606@qq.com>
Co-authored-by: afc163 <afc163@gmail.com>
2024-07-28 10:43:45 +08:00

60 lines
1.4 KiB
TypeScript

import React from 'react';
import { ConfigProvider, Slider } from 'antd';
const style: React.CSSProperties = {
display: 'inline-block',
height: 300,
marginInlineStart: 70,
};
const marks = {
0: '0°C',
26: '26°C',
37: '37°C',
100: {
style: { color: '#f50' },
label: <strong>100°C</strong>,
},
};
const App: React.FC = () => (
<ConfigProvider
theme={{
components: {
Slider: {
controlSize: 20,
railSize: 4,
handleSize: 22,
handleSizeHover: 18,
dotSize: 8,
handleLineWidth: 6,
handleLineWidthHover: 2,
railBg: '#9f3434',
railHoverBg: '#8d2424',
trackBg: '#b0b0ef',
trackHoverBg: '#c77195',
handleColor: '#e6f6a2',
handleActiveColor: '#d22bc4',
dotBorderColor: '#303030',
dotActiveBorderColor: '#918542',
trackBgDisabled: '#1a1b80',
},
},
}}
>
<Slider defaultValue={30} disabled />
<Slider range={{ draggableTrack: true }} defaultValue={[20, 50]} />
<div style={style}>
<Slider vertical defaultValue={30} />
</div>
<div style={style}>
<Slider vertical range step={10} defaultValue={[20, 50]} />
</div>
<div style={style}>
<Slider vertical range marks={marks} defaultValue={[26, 37]} />
</div>
</ConfigProvider>
);
export default App;