diff --git a/ui-kit/src/components/Selection/index.tsx b/ui-kit/src/components/Selection/index.tsx index 2ffe6af0..95ec0a38 100644 --- a/ui-kit/src/components/Selection/index.tsx +++ b/ui-kit/src/components/Selection/index.tsx @@ -28,7 +28,7 @@ const Selection = ( ) => { const [innerValue, setInnerValue] = useState(value ?? ''); const iconColor = disabled ? colors.gray60 : colors.gray40; - const typography: Typographys = size === 'large' ? 'content' : 'content2'; + const typography: Typographys = size === 'large' ? 'p1' : 'p2'; useEffect(() => setInnerValue(value ?? ''), [value]);