{
"presets": ["next/babel"],
"plugins": [
["formatjs", { "ast": true }],
[
"prismjs",
{
"languages": [
"apacheconf",
"bash",
"css",
"diff",
"docker",
"editorconfig",
"ejs",
"git",
"html",
"ignore",
"ini",
"javascript",
"jsdoc",
"json",
"jsx",
"makefile",
"markup",
"php",
"phpdoc",
"regex",
"scss",
"shell-session",
"smarty",
"tcl",
"toml",
"tsx",
"twig",
"yaml"
],
"plugins": [
"command-line",
"copy-to-clipboard",
"diff-highlight",
"inline-color",
"line-highlight",
"line-numbers",
"match-braces",
"normalize-whitespace",
"show-language",
"toolbar"
]
}
]
]
}
t type='hidden' name='id' value='802548124071039f83ebfa2605e839ded82b5689'/>
| The frontend of my personal website. | Armand Philippot |
blob: 7b11bb8bb27318f48e6eb761bfd02ecc50a6e7e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
import { ComponentMeta, ComponentStory } from '@storybook/react';
import CareerIcon from './career';
/**
* Career icon - Storybook Meta
*/
export default {
title: 'Atoms/Illustrations/Icons',
component: CareerIcon,
argTypes: {
className: {
control: {
type: 'text',
},
description: 'Set additional classnames.',
table: {
category: 'Styles',
},
type: {
name: 'string',
required: false,
},
},
},
} as ComponentMeta<typeof CareerIcon>;
const Template: ComponentStory<typeof CareerIcon> = (args) => (
<CareerIcon {...args} />
);
/**
* Icons Stories - Career
*/
export const Career = Template.bind({});
|