mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
feat(addon-docs): add ability to set units for font sizes
This commit is contained in:
parent
2c62e72e0b
commit
c3d7e33bd7
@ -6,7 +6,7 @@ export default {
|
||||
component: Typeset,
|
||||
};
|
||||
|
||||
const fontSizes = [12, 14, 16, 20, 24, 32, 40, 48];
|
||||
const fontSizes = ['12px', '14px', '16px', '20px', '24px', '32px', '40px', '48px'];
|
||||
const fontWeight = 900;
|
||||
|
||||
export const withFontSizes = () => <Typeset fontSizes={fontSizes} />;
|
||||
|
@ -35,7 +35,7 @@ const Wrapper = styled.div<{}>(withReset, ({ theme }) => ({
|
||||
}));
|
||||
|
||||
export interface TypesetProps {
|
||||
fontSizes: number[];
|
||||
fontSizes: string[];
|
||||
fontWeight?: number;
|
||||
sampleText?: string;
|
||||
}
|
||||
@ -51,12 +51,12 @@ export const Typeset: FunctionComponent<TypesetProps> = ({
|
||||
...props
|
||||
}) => (
|
||||
<Wrapper {...props} className="docblock-typeset">
|
||||
{fontSizes.map(num => (
|
||||
<TypeSpecimen key={num}>
|
||||
<Label>{num}px</Label>
|
||||
{fontSizes.map(size => (
|
||||
<TypeSpecimen key={size}>
|
||||
<Label>{size}</Label>
|
||||
<Sample
|
||||
style={{
|
||||
fontSize: num,
|
||||
fontSize: size,
|
||||
fontWeight,
|
||||
}}
|
||||
>
|
||||
|
Loading…
x
Reference in New Issue
Block a user