Merge pull request #28145 from backstage/canon-responsivness

Canon - Document + improve responsive behaviour
This commit is contained in:
Charles de Dreuille
2024-12-17 13:24:20 +00:00
committed by GitHub
25 changed files with 432 additions and 158 deletions
+10 -3
View File
@@ -11,7 +11,7 @@ import '../src/css/components.css';
// Custom themes
import './themes/backstage.css';
import { ThemeProvider } from '../src/theme/context';
import { CanonProvider } from '../src/contexts/canon';
const preview: Preview = {
parameters: {
@@ -32,6 +32,13 @@ const preview: Preview = {
},
viewport: {
viewports: {
xs: {
name: 'XSmall',
styles: {
width: '320px',
height: '100%',
},
},
small: {
name: 'Small',
styles: {
@@ -91,9 +98,9 @@ const preview: Preview = {
});
return (
<ThemeProvider>
<CanonProvider>
<Story />
</ThemeProvider>
</CanonProvider>
);
},
],
+29 -28
View File
@@ -12,7 +12,7 @@
--canon-font-regular: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
.button {
.cn-button {
border-radius: 60px;
font-weight: 400;
text-transform: uppercase;
@@ -25,39 +25,40 @@
background-color: #1f5493;
padding: 6px 16px;
box-shadow: none;
}
.button:hover {
box-shadow: none;
}
&:hover {
box-shadow: none;
}
.button.primary {
color: #fff;
background-color: rgb(21, 58, 102);
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
&.cn-button-primary {
color: #fff;
background-color: rgb(21, 58, 102);
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
.button.primary:hover {
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
&:hover {
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2),
0px 4px 5px 0px rgba(0, 0, 0, 0.14),
0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
}
.button.secondary {
background-color: transparent;
border: 1px solid rgba(31, 84, 147, 0.5);
color: #1f5493;
}
&.cn-button-secondary {
background-color: transparent;
border: 1px solid rgba(31, 84, 147, 0.5);
color: #1f5493;
.button.secondary:hover {
border: 1px solid #1f5493;
background-color: rgba(31, 84, 147, 0.04);
}
&:hover {
border: 1px solid #1f5493;
background-color: rgba(31, 84, 147, 0.04);
}
}
.button.tertiary {
background-color: transparent;
border: none;
color: #1f5493;
&.cn-button-tertiary {
background-color: transparent;
border: none;
color: #1f5493;
}
}
}
+150
View File
@@ -0,0 +1,150 @@
import { Unstyled, Meta, Canvas, Source } from '@storybook/blocks';
import {
Columns,
Text,
ComponentStatus,
Banner,
Title,
Roadmap,
} from './components';
import { list } from './components/Roadmap/list';
import * as HeadingStories from '../src/components/Heading/Heading.stories';
import * as TextStories from '../src/components/Text/Text.stories';
import * as Table from './components/Table';
import { Chip } from './components/Chip';
<Meta title="Core Concepts/Responsive" />
<Unstyled>
<Title type="h1">Responsive</Title>
<Text>
Canon is built on a responsive design system, meaning that the components are
designed to adapt to different screen sizes. By default we offer a set of
breakpoints that you can use to create responsive components.
</Text>
<Title type="h2" style={{ marginBottom: '16px' }}>
Breakpoints
</Title>
<Table.Root>
<Table.Header>
<Table.HeaderRow>
<Table.HeaderCell>Breakpoint prefix</Table.HeaderCell>
<Table.HeaderCell>Minimum width</Table.HeaderCell>
<Table.HeaderCell>CSS</Table.HeaderCell>
</Table.HeaderRow>
</Table.Header>
<Table.Body>
<Table.Row>
<Table.Cell>
<Chip head>xs</Chip>
</Table.Cell>
<Table.Cell>
<Chip>0px</Chip>
</Table.Cell>
<Table.Cell>
<Chip>{`{ ... }`}</Chip>
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
<Chip head>sm</Chip>
</Table.Cell>
<Table.Cell>
<Chip>640px</Chip>
</Table.Cell>
<Table.Cell>
<Chip>{`@media (min-width: 640px) { ... }`}</Chip>
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
<Chip head>md</Chip>
</Table.Cell>
<Table.Cell>
<Chip>768px</Chip>
</Table.Cell>
<Table.Cell>
<Chip>{`@media (min-width: 768px) { ... }`}</Chip>
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
<Chip head>lg</Chip>
</Table.Cell>
<Table.Cell>
<Chip>1024px</Chip>
</Table.Cell>
<Table.Cell>
<Chip>{`@media (min-width: 1024px) { ... }`}</Chip>
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
<Chip head>xl</Chip>
</Table.Cell>
<Table.Cell>
<Chip>1280px</Chip>
</Table.Cell>
<Table.Cell>
<Chip>{`@media (min-width: 1280px) { ... }`}</Chip>
</Table.Cell>
</Table.Row>
<Table.Row>
<Table.Cell>
<Chip head>2xl</Chip>
</Table.Cell>
<Table.Cell>
<Chip>1536px</Chip>
</Table.Cell>
<Table.Cell>
<Chip>{`@media (min-width: 1536px) { ... }`}</Chip>
</Table.Cell>
</Table.Row>
</Table.Body>
</Table.Root>
<Title type="h2">Responsive components</Title>
<Text>
Canon components are designed to be responsive, meaning that they will adapt
to different screen sizes. Not every component is responsive, but the ones
that are will have a prop to control the responsive behavior.
</Text>
<Text>
The behaviour is the same for each component. For each prop, instead of adding
the value, you add an object with the value and the breakpoint prefix.
</Text>
<Source
code={`// Fixed value
<Button size="small">Button</Button>
// Responsive value
<Button size={{ xs: 'small', md: 'medium' }}>Button</Button>`} dark />
<Title type="h2">How to update breakpoints</Title>
<Text>
The set of keys are not to be changed, but you can update the minimum width of
each breakpoint in the theme provider.
</Text>
<Source
code={`<CanonProvider breakpoints={{
xs: 0,
sm: 640,
md: 768,
lg: 1024,
xl: 1280,
'2xl': 1536,
}} />`}
dark
/>
</Unstyled>
@@ -1,7 +1,6 @@
.banner {
display: flex;
align-items: center;
font-family: 'Geist', sans-serif;
font-size: 16px;
line-height: 28px;
padding: 16px;
@@ -20,14 +20,12 @@
& .title {
color: #3b59ff;
font-family: 'Geist', sans-serif;
font-size: 16px;
font-weight: 400;
text-decoration: none;
}
& .pill {
font-family: 'Geist', sans-serif;
display: inline-flex;
align-items: center;
color: #000;
@@ -47,14 +47,12 @@
& .title {
font-size: 16px;
font-family: 'Geist', sans-serif;
transition: color 0.2s ease-in-out;
margin-bottom: 0.25rem;
}
& .description {
font-size: 16px;
font-family: 'Geist', sans-serif;
color: #9e9e9e;
}
}
@@ -4,7 +4,6 @@
}
.roadmap .roadmap-item {
font-family: 'Geist', sans-serif;
display: flex;
align-items: center;
justify-content: space-between;
@@ -60,7 +59,6 @@
}
.roadmap .roadmap-item .title {
font-weight: 300;
font-size: 16px;
}
@@ -18,8 +18,6 @@
border: 1px solid #e7e7e7;
border-radius: 4px;
overflow: hidden;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
& .sb-table {
width: 100%;
@@ -34,9 +32,7 @@
border: none !important;
text-align: left;
background-color: white !important;
font-family: 'Geist', sans-serif;
font-size: 16px;
font-weight: 300;
& p {
margin: 0;
@@ -15,22 +15,16 @@
*/
.sb-text {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
font-size: 16px;
line-height: 28px;
margin: 0;
font-weight: 300;
margin-bottom: 16px;
color: #4f4f4f;
& p {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol';
font-size: 16px;
line-height: 28px;
margin: 0;
font-weight: 300;
}
& code {
@@ -15,8 +15,6 @@
*/
.sb-title {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
margin: 0;
font-weight: 500;
border: none;
@@ -24,7 +22,7 @@
&.h1 {
font-size: 36px;
line-height: 44px;
margin-bottom: 8px;
margin-bottom: 24px;
margin-top: 0px;
}
@@ -1,3 +1,8 @@
.sbdocs-content {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}
@import './Banner/styles.css';
@import './Chip/styles.css';
@import './Columns/styles.css';
+7 -3
View File
@@ -117,7 +117,7 @@ export const Button: React_2.ForwardRefExoticComponent<
// @public
export interface ButtonProps {
// (undocumented)
children: React_2.ReactNode;
children: React.ReactNode;
// (undocumented)
disabled?: boolean;
// (undocumented)
@@ -125,9 +125,13 @@ export interface ButtonProps {
// (undocumented)
iconStart?: IconNames;
// (undocumented)
size?: 'small' | 'medium';
size?: 'small' | 'medium' | Partial<Record<Breakpoint, 'small' | 'medium'>>;
// (undocumented)
variant?: 'primary' | 'secondary' | 'tertiary';
variant?:
| 'primary'
| 'secondary'
| 'tertiary'
| Partial<Record<Breakpoint, 'primary' | 'secondary' | 'tertiary'>>;
}
// @public (undocumented)
@@ -46,28 +46,34 @@ export const Primary: Story = {
},
};
export const Secondary: Story = {
export const Variants: Story = {
args: {
children: 'Secondary button',
variant: 'secondary',
children: 'Button',
},
};
export const Tertiary: Story = {
args: {
children: 'Tertiary button',
variant: 'tertiary',
parameters: {
argTypes: {
variant: {
control: false,
},
},
},
render: () => (
<Inline alignY="center">
<Button variant="primary">Primary</Button>
<Button variant="secondary">Secondary</Button>
<Button variant="tertiary">Tertiary</Button>
</Inline>
),
};
export const Sizes: Story = {
args: {
children: 'Button',
},
render: args => (
render: () => (
<Inline alignY="center">
<Button {...args} size="medium" />
<Button {...args} size="small" />
<Button size="medium">Medium</Button>
<Button size="small">Small</Button>
</Inline>
),
};
@@ -104,3 +110,18 @@ export const Disabled: Story = {
disabled: true,
},
};
export const Responsive: Story = {
args: {
children: 'Button',
variant: {
xs: 'primary',
sm: 'secondary',
md: 'tertiary',
},
size: {
xs: 'small',
sm: 'medium',
},
},
};
+17 -17
View File
@@ -16,21 +16,8 @@
import React, { forwardRef } from 'react';
import { Icon } from '../Icon';
import type { IconNames } from '../Icon/types';
/**
* Properties for {@link Button}
*
* @public
*/
export interface ButtonProps {
size?: 'small' | 'medium';
variant?: 'primary' | 'secondary' | 'tertiary';
children: React.ReactNode;
disabled?: boolean;
iconStart?: IconNames;
iconEnd?: IconNames;
}
import { ButtonProps } from './types';
import { useCanon } from '../../contexts/canon';
/** @public */
export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
@@ -44,15 +31,28 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
children,
} = props;
const { getResponsiveValue } = useCanon();
// Get the responsive value for the variant
const responsiveSize = getResponsiveValue(size);
const responsiveVariant = getResponsiveValue(variant);
return (
<button
{...props}
ref={ref}
disabled={disabled}
className={`button ${variant} ${size}`}
className={[
'cn-button',
`cn-button-${responsiveSize}`,
`cn-button-${responsiveVariant}`,
].join(' ')}
>
<span
className={['button-content', iconStart && iconEnd ? 'icon-both' : '']
className={[
'cn-button-content',
iconStart && iconEnd ? 'cn-button-content-icon-both' : '',
]
.filter(Boolean)
.join(' ')}
>
+83 -2
View File
@@ -26,11 +26,11 @@ import { PropsTable } from '../../../docs/components/PropsTable/PropsTable';
data={{
size: {
type: ['small', 'medium'],
responsive: false,
responsive: true,
},
variant: {
type: ['primary', 'secondary', 'tertiary'],
responsive: false,
responsive: true,
},
disabled: {
type: 'boolean',
@@ -51,4 +51,85 @@ import { PropsTable } from '../../../docs/components/PropsTable/PropsTable';
}}
/>
<Title type="h2">Examples</Title>
<Title type="h3">Variants</Title>
<Text>Here's a view when buttons have different variants.</Text>
<Canvas of={ButtonStories.Variants} />
<Source
code={`<Inline alignY="center">
<Button variant="primary">Primary</Button>
<Button variant="secondary">Secondary</Button>
<Button variant="tertiary">Tertiary</Button>
</Inline>`}
language="tsx"
dark
/>
<Title type="h3">Sizes</Title>
<Text>Here's a view when buttons have different sizes.</Text>
<Canvas of={ButtonStories.Sizes} />
<Source
code={`<Inline alignY="center">
<Button size="medium">Medium</Button>
<Button size="small">Small</Button>
</Inline>`}
language="tsx"
dark
/>
<Title type="h3">With Icons</Title>
<Text>Here's a view when buttons have icons.</Text>
<Canvas of={ButtonStories.WithIcons} />
<Source
code={`<Inline alignY="center">
<Button iconStart="cloud">Button</Button>
<Button iconEnd="chevronRight">Button</Button>
<Button iconStart="cloud" iconEnd="chevronRight">Button</Button>
</Inline>`}
language="tsx"
dark
/>
<Title type="h3">Full width</Title>
<Text>Here's a view when buttons are full width.</Text>
<Canvas of={ButtonStories.FullWidth} />
<Source
code={`<Stack style={{ width: '300px' }}>
<Button iconStart="cloud">Button</Button>
<Button iconEnd="chevronRight">Button</Button>
<Button iconStart="cloud" iconEnd="chevronRight">Button</Button>
</Stack>`}
language="tsx"
dark
/>
<Title type="h3">Disabled</Title>
<Text>Here's a view when buttons are disabled.</Text>
<Canvas of={ButtonStories.Disabled} />
<Source code={`<Button disabled>Button</Button>`} language="tsx" dark />
<Title type="h3">Responsive</Title>
<Text>Here's a view when buttons are responsive.</Text>
<Canvas of={ButtonStories.Responsive} />
<Source
code={`<Button variant={{ xs: 'primary', sm: 'secondary', md: 'tertiary' }} size={{ xs: 'small', sm: 'medium' }}>
Button
</Button>`}
language="tsx"
dark
/>
</Unstyled>
@@ -14,4 +14,4 @@
* limitations under the License.
*/
export { Button } from './Button';
export type { ButtonProps } from './Button';
export type { ButtonProps } from './types';
+25 -24
View File
@@ -14,69 +14,70 @@
* limitations under the License.
*/
.button {
.cn-button {
all: unset;
display: inline-flex;
align-items: center;
justify-content: center;
user-select: none;
font-family: var(--canon-font-regular);
font-weight: var(--canon-font-bold);
font-size: var(--canon-font-size-md);
font-weight: var(--canon-font-weight-bold);
font-size: var(--canon-font-size-body);
padding: 0;
transition: all 150ms ease;
cursor: pointer;
border-radius: 8px;
}
.button.primary {
.cn-button-primary {
background-color: var(--canon-accent);
color: var(--canon-text-primary-on-accent);
&:hover {
background-color: transparent;
box-shadow: inset 0 0 0 1px var(--canon-outline-focus);
color: var(--canon-text-primary);
}
}
.button.primary:hover {
background-color: transparent;
box-shadow: inset 0 0 0 1px var(--canon-outline-focus);
color: var(--canon-text-primary);
}
.button.secondary {
.cn-button-secondary {
background-color: transparent;
box-shadow: inset 0 0 0 1px var(--canon-outline);
color: var(--canon-text-primary);
&:hover {
box-shadow: inset 0 0 0 1px var(--canon-outline-hover);
}
}
.button.secondary:hover {
box-shadow: inset 0 0 0 1px var(--canon-outline-hover);
}
.button.tertiary {
.cn-button-tertiary {
background-color: transparent;
color: var(--canon-text-primary);
&:hover {
color: var(--canon-text-secondary);
}
}
.button.tertiary:hover {
color: var(--canon-text-secondary);
}
.button.small {
.cn-button-small {
padding-left: 6px;
padding-right: 6px;
height: 32px;
}
.button.medium {
.cn-button-medium {
padding-left: 8px;
padding-right: 8px;
height: 40px;
}
.button-content {
.cn-button-content {
display: flex;
align-items: center;
gap: var(--canon-spacing-xs);
font-weight: var(--canon-font-weight-bold);
}
.button-content.icon-both {
.cn-button-content-icon-both {
flex: 1;
}
@@ -13,29 +13,23 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Breakpoints } from '../types';
import { IconNames } from '../Icon';
import { Breakpoint } from '../../layout/types';
export const getResponsiveValue = (
value: any,
breakpoint: keyof Breakpoints,
) => {
if (typeof value === 'object') {
const breakpointsOrder: (keyof Breakpoints)[] = [
'xs',
'sm',
'md',
'lg',
'xl',
'2xl',
];
const index = breakpointsOrder.indexOf(breakpoint);
for (let i = index; i >= 0; i--) {
if (value[breakpointsOrder[i]]) {
return value[breakpointsOrder[i]];
}
}
return value['xs'];
}
return value;
};
/**
* Properties for {@link Button}
*
* @public
*/
export interface ButtonProps {
size?: 'small' | 'medium' | Partial<Record<Breakpoint, 'small' | 'medium'>>;
variant?:
| 'primary'
| 'secondary'
| 'tertiary'
| Partial<Record<Breakpoint, 'primary' | 'secondary' | 'tertiary'>>;
children: React.ReactNode;
disabled?: boolean;
iconStart?: IconNames;
iconEnd?: IconNames;
}
@@ -60,7 +60,7 @@ export const Responsive: Story = {
...Default.args,
variant: {
xs: 'title4',
sm: 'display',
md: 'display',
},
},
};
@@ -16,15 +16,17 @@
import React, { forwardRef } from 'react';
import { HeadingProps } from './types';
import { useTheme } from '../../theme/context';
import { getResponsiveValue } from '../../utils/getResponsiveValue';
import { useCanon } from '../../contexts/canon';
export const Heading = forwardRef<HTMLHeadingElement, HeadingProps>(
(props, ref) => {
const { children, variant = 'title1', as = 'h1', ...restProps } = props;
const { breakpoint } = useTheme();
const responsiveVariant = getResponsiveValue(variant, breakpoint);
const { getResponsiveValue } = useCanon();
// Get the responsive value for the variant
const responsiveVariant = getResponsiveValue(variant);
// Determine the component to render based on the variant
let Component = as;
if (variant === 'title2') Component = 'h2';
if (variant === 'title3') Component = 'h3';
@@ -17,7 +17,7 @@
import React from 'react';
import { Meta, StoryObj } from '@storybook/react';
import { Icon } from './Icon';
import { ThemeProvider } from '../../theme/context';
import { CanonProvider } from '../../contexts/canon';
import { defaultIcons } from './icons';
const meta = {
@@ -52,9 +52,9 @@ export const WithCustomIcon: Story = {
},
decorators: [
Story => (
<ThemeProvider overrides={{ arrowDown: () => <div>Custom Icon</div> }}>
<CanonProvider overrides={{ arrowDown: () => <div>Custom Icon</div> }}>
<Story />
</ThemeProvider>
</CanonProvider>
),
],
};
+2 -2
View File
@@ -15,13 +15,13 @@
*/
import React from 'react';
import { useTheme } from '../../theme/context';
import { useCanon } from '../../contexts/canon';
import type { IconProps } from './types';
/** @public */
export const Icon = (props: IconProps) => {
const { name, size = 16 } = props;
const { icons } = useTheme();
const { icons } = useCanon();
const RemixIcon = icons[name] as React.ComponentType<{ className?: string }>;
+5 -5
View File
@@ -16,8 +16,7 @@
import React, { forwardRef } from 'react';
import { TextProps } from './types';
import { useTheme } from '../../theme/context';
import { getResponsiveValue } from '../../utils/getResponsiveValue';
import { useCanon } from '../../contexts/canon';
export const Text = forwardRef<HTMLParagraphElement, TextProps>(
(props, ref) => {
@@ -28,10 +27,11 @@ export const Text = forwardRef<HTMLParagraphElement, TextProps>(
...restProps
} = props;
const { breakpoint } = useTheme();
const { getResponsiveValue } = useCanon();
const responsiveVariant = getResponsiveValue(variant, breakpoint);
const responsiveWeight = getResponsiveValue(weight, breakpoint);
// Get the responsive values for the variant and weight
const responsiveVariant = getResponsiveValue(variant);
const responsiveWeight = getResponsiveValue(weight);
return (
<p
@@ -29,24 +29,26 @@ const defaultBreakpoints: Breakpoints = {
'2xl': '1536px',
};
interface ThemeContextProps {
interface CanonContextProps {
icons: IconMap;
breakpoint: keyof Breakpoints;
getResponsiveValue: (value: string | Partial<Breakpoints>) => string;
}
const ThemeContext = createContext<ThemeContextProps>({
const CanonContext = createContext<CanonContextProps>({
icons: defaultIcons,
breakpoint: 'md',
getResponsiveValue: () => '',
});
interface ThemeProviderProps {
interface CanonProviderProps {
children?: ReactNode;
overrides?: Partial<Record<IconNames, React.ComponentType>>;
breakpoints?: Partial<Breakpoints>;
}
/** @public */
export const ThemeProvider = (props: ThemeProviderProps) => {
export const CanonProvider = (props: CanonProviderProps) => {
const { children, overrides, breakpoints = defaultBreakpoints } = props;
// Merge provided overrides with default icons
@@ -68,12 +70,36 @@ export const ThemeProvider = (props: ThemeProviderProps) => {
return 'xs';
})();
const getResponsiveValue = (value: string | Partial<Breakpoints>) => {
if (typeof value === 'object') {
const breakpointsOrder: (keyof Breakpoints)[] = [
'xs',
'sm',
'md',
'lg',
'xl',
'2xl',
];
const index = breakpointsOrder.indexOf(breakpoint);
for (let i = index; i >= 0; i--) {
if (value[breakpointsOrder[i]]) {
return value[breakpointsOrder[i]] as string;
}
}
return value['xs'] as string;
}
return value;
};
return (
<ThemeContext.Provider value={{ icons: combinedIcons, breakpoint }}>
<CanonContext.Provider
value={{ icons: combinedIcons, breakpoint, getResponsiveValue }}
>
{children}
</ThemeContext.Provider>
</CanonContext.Provider>
);
};
/** @public */
export const useTheme = () => useContext(ThemeContext);
export const useCanon = () => useContext(CanonContext);
+1
View File
@@ -21,6 +21,7 @@
html,
body {
font-family: var(--canon-font-regular);
font-weight: var(--canon-font-weight-regular);
}
/* Light theme tokens */