@edifice.io/react 2.5.8-develop-pedago.20260130112637 → 2.5.8-develop-b2school.20260130170800

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/components/Badge/Badge.d.ts +1 -7
  2. package/dist/components/Badge/Badge.js +1 -13
  3. package/dist/components/index.d.ts +0 -2
  4. package/dist/hooks/useEdificeIcons/useEdificeIcons.d.ts +0 -1
  5. package/dist/hooks/useEdificeIcons/useEdificeIcons.js +0 -5
  6. package/dist/icons.js +352 -360
  7. package/dist/index.js +140 -145
  8. package/dist/modules/icons/components/index.d.ts +0 -4
  9. package/dist/modules/multimedia/FileCard/FileCard.js +1 -1
  10. package/package.json +6 -7
  11. package/dist/components/MediaViewer/MediaViewer.d.ts +0 -17
  12. package/dist/components/MediaViewer/MediaViewer.js +0 -36
  13. package/dist/components/MediaViewer/MediaWrapper.d.ts +0 -7
  14. package/dist/components/MediaViewer/MediaWrapper.js +0 -72
  15. package/dist/components/MediaViewer/PdfViewer.d.ts +0 -4
  16. package/dist/components/MediaViewer/PdfViewer.js +0 -26
  17. package/dist/components/MediaViewer/ToolbarViewer.d.ts +0 -7
  18. package/dist/components/MediaViewer/ToolbarViewer.js +0 -41
  19. package/dist/components/MediaViewer/ToolbarZoom.d.ts +0 -4
  20. package/dist/components/MediaViewer/ToolbarZoom.js +0 -19
  21. package/dist/components/MediaViewer/index.d.ts +0 -2
  22. package/dist/components/PromotionCard/PromotionCard.d.ts +0 -74
  23. package/dist/components/PromotionCard/PromotionCard.js +0 -31
  24. package/dist/components/PromotionCard/PromotionCardBody.d.ts +0 -10
  25. package/dist/components/PromotionCard/PromotionCardBody.js +0 -15
  26. package/dist/components/PromotionCard/PromotionCardDescription.d.ts +0 -9
  27. package/dist/components/PromotionCard/PromotionCardDescription.js +0 -12
  28. package/dist/components/PromotionCard/PromotionCardFooter.d.ts +0 -9
  29. package/dist/components/PromotionCard/PromotionCardFooter.js +0 -12
  30. package/dist/components/PromotionCard/PromotionCardHeader.d.ts +0 -11
  31. package/dist/components/PromotionCard/PromotionCardHeader.js +0 -17
  32. package/dist/components/PromotionCard/PromotionCardIcon.d.ts +0 -10
  33. package/dist/components/PromotionCard/PromotionCardIcon.js +0 -15
  34. package/dist/components/PromotionCard/PromotionCardTitle.d.ts +0 -9
  35. package/dist/components/PromotionCard/PromotionCardTitle.js +0 -12
  36. package/dist/components/PromotionCard/index.d.ts +0 -2
  37. package/dist/components/SmartEllipsis/SmartEllipsis.d.ts +0 -5
  38. package/dist/components/SmartEllipsis/SmartEllipsis.js +0 -21
  39. package/dist/components/SmartEllipsis/index.d.ts +0 -2
  40. package/dist/hooks/useZoom/index.d.ts +0 -1
  41. package/dist/hooks/useZoom/useZoom.d.ts +0 -7
  42. package/dist/hooks/useZoom/useZoom.js +0 -14
  43. package/dist/modules/icons/components/IconAiFill.d.ts +0 -7
  44. package/dist/modules/icons/components/IconAiFill.js +0 -12
  45. package/dist/modules/icons/components/IconExercizerAi.d.ts +0 -7
  46. package/dist/modules/icons/components/IconExercizerAi.js +0 -14
  47. package/dist/modules/icons/components/IconLabel.d.ts +0 -7
  48. package/dist/modules/icons/components/IconLabel.js +0 -12
  49. package/dist/modules/icons/components/IconTeacher.d.ts +0 -7
  50. package/dist/modules/icons/components/IconTeacher.js +0 -12
@@ -1,4 +0,0 @@
1
- export default function ToolbarZoom({ zoomIn, zoomOut, }: {
2
- zoomIn: () => void;
3
- zoomOut: () => void;
4
- }): import("react/jsx-runtime").JSX.Element;
@@ -1,19 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import SvgIconMinus from "../../modules/icons/components/IconMinus.js";
3
- import SvgIconPlus from "../../modules/icons/components/IconPlus.js";
4
- import SvgIconZoomIn from "../../modules/icons/components/IconZoomIn.js";
5
- import Flex from "../Flex/Flex.js";
6
- import IconButton from "../Button/IconButton.js";
7
- function ToolbarZoom({
8
- zoomIn,
9
- zoomOut
10
- }) {
11
- return /* @__PURE__ */ jsx(Flex, { justify: "center", className: "media-viewer-toolbar-zoom-container", children: /* @__PURE__ */ jsxs(Flex, { gap: "4", className: "p-12 media-viewer-toolbar-zoom", align: "center", children: [
12
- /* @__PURE__ */ jsx(IconButton, { variant: "ghost", icon: /* @__PURE__ */ jsx(SvgIconMinus, { color: "#fff" }), onClick: zoomOut }),
13
- /* @__PURE__ */ jsx(SvgIconZoomIn, { color: "#fff", className: "m-4" }),
14
- /* @__PURE__ */ jsx(IconButton, { variant: "ghost", icon: /* @__PURE__ */ jsx(SvgIconPlus, { color: "#fff" }), onClick: zoomIn })
15
- ] }) });
16
- }
17
- export {
18
- ToolbarZoom as default
19
- };
@@ -1,2 +0,0 @@
1
- export * from './MediaViewer';
2
- export { default as MediaViewer } from './MediaViewer';
@@ -1,74 +0,0 @@
1
- export interface PromotionCardProps {
2
- children: React.ReactNode;
3
- borderColor?: string;
4
- backgroundColor?: string;
5
- className?: string;
6
- }
7
- /**
8
- * Promotion Card component to display promotional features in a card format.
9
- *
10
- * The component PromotionCard is a Compound Component composed of:
11
- * - PromotionCardHeader: information on the top right corner
12
- * - PromotionCardIcon: Icon on the left side (background color and Icon)
13
- * - PromotionCardBody:
14
- * - PromotionCardTitle: Card Title
15
- * - PromotionCardDescription: Card Description
16
- * - PromotionCardAction: Card Action (mainly a button with a onClick action)
17
- *
18
- * @example
19
- * <PromotionCard>
20
- * <PromotionCard.Header backgroundColor="#faea9c">
21
- * header content
22
- * </PromotionCard.Header>
23
- * <PromotionCard.Icon
24
- * backgroundColor="#FFEFE3"
25
- * icon={<IconEdit color="#FF8D2E" />}
26
- * />
27
- * <PromotionCard.Body>
28
- * <PromotionCard.Title>Création Libre</PromotionCard.Title>
29
- * <PromotionCard.Description>
30
- * Vous n'avez pas peur de la "page blanche" ? Lancez-vous pour créer
31
- * votre cours ou votre document !
32
- * </PromotionCard.Description>
33
- * <PromotionCard.Actions>
34
- * <Button
35
- * color="tertiary"
36
- * variant="ghost"
37
- * size="sm"
38
- * onClick={() => {}}
39
- * leftIcon={<IconPlus />}
40
- * >
41
- * Nouvelle page
42
- * </Button>
43
- * </PromotionCard.Actions>
44
- * </PromotionCard.Body>
45
- * </PromotionCard>
46
- */
47
- export declare const Root: ({ children, borderColor, backgroundColor, className, }: PromotionCardProps) => import("react/jsx-runtime").JSX.Element;
48
- declare const PromotionCard: (({ children, borderColor, backgroundColor, className, }: PromotionCardProps) => import("react/jsx-runtime").JSX.Element) & {
49
- Header: {
50
- ({ backgroundColor, textColor, children, className, }: import('./PromotionCardHeader').PromotionCardHeaderProps): import("react/jsx-runtime").JSX.Element;
51
- displayName: string;
52
- };
53
- Body: {
54
- ({ children, textColor, className, }: import('./PromotionCardBody').PromotionCardBodyProps): import("react/jsx-runtime").JSX.Element;
55
- displayName: string;
56
- };
57
- Icon: {
58
- ({ icon, backgroundColor, className, }: import('./PromotionCardIcon').PromotionCardIconProps): import("react/jsx-runtime").JSX.Element;
59
- displayName: string;
60
- };
61
- Title: {
62
- ({ children, className, }: import('./PromotionCardTitle').PromotionCardTitleProps): import("react/jsx-runtime").JSX.Element;
63
- displayName: string;
64
- };
65
- Description: {
66
- ({ children, className, }: import('./PromotionCardDescription').PromotionCardDescriptionProps): import("react/jsx-runtime").JSX.Element;
67
- displayName: string;
68
- };
69
- Footer: {
70
- ({ children, className, }: import('./PromotionCardFooter').PromotionCardFooterProps): import("react/jsx-runtime").JSX.Element;
71
- displayName: string;
72
- };
73
- };
74
- export default PromotionCard;
@@ -1,31 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import PromotionCardBody from "./PromotionCardBody.js";
3
- import PromotionCardDescription from "./PromotionCardDescription.js";
4
- import PromotionCardFooter from "./PromotionCardFooter.js";
5
- import PromotionCardHeader from "./PromotionCardHeader.js";
6
- import PromotionCardIcon from "./PromotionCardIcon.js";
7
- import PromotionCardTitle from "./PromotionCardTitle.js";
8
- import clsx from "clsx";
9
- const Root = ({
10
- children,
11
- borderColor,
12
- backgroundColor,
13
- className
14
- }) => {
15
- const classNames = clsx("promotion-card", className);
16
- return /* @__PURE__ */ jsx("div", { className: classNames, style: {
17
- borderColor,
18
- backgroundColor
19
- }, children });
20
- }, PromotionCard = /* @__PURE__ */ Object.assign(Root, {
21
- Header: PromotionCardHeader,
22
- Body: PromotionCardBody,
23
- Icon: PromotionCardIcon,
24
- Title: PromotionCardTitle,
25
- Description: PromotionCardDescription,
26
- Footer: PromotionCardFooter
27
- });
28
- export {
29
- Root,
30
- PromotionCard as default
31
- };
@@ -1,10 +0,0 @@
1
- export interface PromotionCardBodyProps {
2
- children: React.ReactNode;
3
- textColor?: string;
4
- className?: string;
5
- }
6
- declare const PromotionCardBody: {
7
- ({ children, textColor, className, }: PromotionCardBodyProps): import("react/jsx-runtime").JSX.Element;
8
- displayName: string;
9
- };
10
- export default PromotionCardBody;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import clsx from "clsx";
3
- const PromotionCardBody = ({
4
- children,
5
- textColor,
6
- className
7
- }) => {
8
- const classNames = clsx("promotion-card-body", className);
9
- return /* @__PURE__ */ jsx("div", { className: classNames, style: {
10
- color: textColor
11
- }, children });
12
- };
13
- export {
14
- PromotionCardBody as default
15
- };
@@ -1,9 +0,0 @@
1
- export interface PromotionCardDescriptionProps {
2
- children: React.ReactNode;
3
- className?: string;
4
- }
5
- declare const PromotionCardDescription: {
6
- ({ children, className, }: PromotionCardDescriptionProps): import("react/jsx-runtime").JSX.Element;
7
- displayName: string;
8
- };
9
- export default PromotionCardDescription;
@@ -1,12 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { clsx } from "clsx";
3
- const PromotionCardDescription = ({
4
- children,
5
- className
6
- }) => {
7
- const classNames = clsx("promotion-card-description", className);
8
- return /* @__PURE__ */ jsx("div", { className: classNames, children });
9
- };
10
- export {
11
- PromotionCardDescription as default
12
- };
@@ -1,9 +0,0 @@
1
- export interface PromotionCardFooterProps {
2
- children: React.ReactNode;
3
- className?: string;
4
- }
5
- declare const PromotionCardFooter: {
6
- ({ children, className, }: PromotionCardFooterProps): import("react/jsx-runtime").JSX.Element;
7
- displayName: string;
8
- };
9
- export default PromotionCardFooter;
@@ -1,12 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { clsx } from "clsx";
3
- const PromotionCardFooter = ({
4
- children,
5
- className
6
- }) => {
7
- const classNames = clsx("promotion-card-footer", className);
8
- return /* @__PURE__ */ jsx("div", { className: classNames, children });
9
- };
10
- export {
11
- PromotionCardFooter as default
12
- };
@@ -1,11 +0,0 @@
1
- export interface PromotionCardHeaderProps {
2
- children: React.ReactNode;
3
- backgroundColor?: string;
4
- textColor?: string;
5
- className?: string;
6
- }
7
- declare const PromotionCardHeader: {
8
- ({ backgroundColor, textColor, children, className, }: PromotionCardHeaderProps): import("react/jsx-runtime").JSX.Element;
9
- displayName: string;
10
- };
11
- export default PromotionCardHeader;
@@ -1,17 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { clsx } from "clsx";
3
- const PromotionCardHeader = ({
4
- backgroundColor,
5
- textColor,
6
- children,
7
- className
8
- }) => {
9
- const classNames = clsx("promotion-card-header", className);
10
- return /* @__PURE__ */ jsx("div", { className: classNames, style: {
11
- backgroundColor,
12
- color: textColor
13
- }, children });
14
- };
15
- export {
16
- PromotionCardHeader as default
17
- };
@@ -1,10 +0,0 @@
1
- export interface PromotionCardIconProps {
2
- icon: React.ReactNode;
3
- backgroundColor?: string;
4
- className?: string;
5
- }
6
- declare const PromotionCardIcon: {
7
- ({ icon, backgroundColor, className, }: PromotionCardIconProps): import("react/jsx-runtime").JSX.Element;
8
- displayName: string;
9
- };
10
- export default PromotionCardIcon;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { clsx } from "clsx";
3
- const PromotionCardIcon = ({
4
- icon,
5
- backgroundColor,
6
- className
7
- }) => {
8
- const classNames = clsx("promotion-card-icon", className);
9
- return /* @__PURE__ */ jsx("div", { className: classNames, style: {
10
- backgroundColor
11
- }, children: icon });
12
- };
13
- export {
14
- PromotionCardIcon as default
15
- };
@@ -1,9 +0,0 @@
1
- export interface PromotionCardTitleProps {
2
- children: React.ReactNode;
3
- className?: string;
4
- }
5
- declare const PromotionCardTitle: {
6
- ({ children, className, }: PromotionCardTitleProps): import("react/jsx-runtime").JSX.Element;
7
- displayName: string;
8
- };
9
- export default PromotionCardTitle;
@@ -1,12 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import clsx from "clsx";
3
- const PromotionCardTitle = ({
4
- children,
5
- className
6
- }) => {
7
- const classNames = clsx("promotion-card-title", className);
8
- return /* @__PURE__ */ jsx("h3", { className: classNames, children });
9
- };
10
- export {
11
- PromotionCardTitle as default
12
- };
@@ -1,2 +0,0 @@
1
- export { default as PromotionCard } from './PromotionCard';
2
- export * from './PromotionCard';
@@ -1,5 +0,0 @@
1
- interface SmartEllipsisProps {
2
- text: string;
3
- }
4
- export default function SmartEllipsis({ text }: SmartEllipsisProps): import("react/jsx-runtime").JSX.Element;
5
- export {};
@@ -1,21 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { useRef, useState, useEffect } from "react";
3
- function SmartEllipsis({
4
- text
5
- }) {
6
- const ref = useRef(null), [displayText, setDisplayText] = useState(text), updateText = () => {
7
- const el = ref.current;
8
- if (el)
9
- if (el.textContent = text, el.scrollWidth > el.clientWidth) {
10
- let startText = text.slice(0, Math.ceil(text.length / 2)), endText = text.slice(Math.ceil(text.length / 2));
11
- for (; startText.length > 1 && endText.length > 1 && el.scrollWidth > el.clientWidth; )
12
- startText = startText.slice(0, -1), endText = endText.slice(1), el.textContent = `${startText}…${endText}`;
13
- setDisplayText(el.textContent);
14
- } else
15
- setDisplayText(text);
16
- };
17
- return useEffect(() => (updateText(), window.addEventListener("resize", updateText), () => window.removeEventListener("resize", updateText)), [text]), /* @__PURE__ */ jsx("span", { ref, className: "smart-ellipsis", children: displayText });
18
- }
19
- export {
20
- SmartEllipsis as default
21
- };
@@ -1,2 +0,0 @@
1
- export * from './SmartEllipsis';
2
- export { default as SmartEllipsis } from './SmartEllipsis';
@@ -1 +0,0 @@
1
- export { default as useZoom } from './useZoom';
@@ -1,7 +0,0 @@
1
- export default function useZoom(initialScale?: number, maxScale?: number, minScale?: number, step?: number): {
2
- scale: number;
3
- zoomIn: () => void;
4
- zoomOut: () => void;
5
- resetZoom: () => void;
6
- setScale: import('react').Dispatch<import('react').SetStateAction<number>>;
7
- };
@@ -1,14 +0,0 @@
1
- import { useState } from "react";
2
- function useZoom(initialScale = 1, maxScale = 2, minScale = 0.5, step = 0.5) {
3
- const [scale, setScale] = useState(initialScale);
4
- return {
5
- scale,
6
- zoomIn: () => setScale((prev) => Math.min(prev + step, maxScale)),
7
- zoomOut: () => setScale((prev) => Math.max(prev - step, minScale)),
8
- resetZoom: () => setScale(initialScale),
9
- setScale
10
- };
11
- }
12
- export {
13
- useZoom as default
14
- };
@@ -1,7 +0,0 @@
1
- import { SVGProps } from 'react';
2
- interface SVGRProps {
3
- title?: string;
4
- titleId?: string;
5
- }
6
- declare const SvgIconAiFill: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
- export default SvgIconAiFill;
@@ -1,12 +0,0 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
2
- const SvgIconAiFill = ({
3
- title,
4
- titleId,
5
- ...props
6
- }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
- /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m12.61 21.262.585-1.344a10.35 10.35 0 0 1 5.27-5.342l1.805-.802a1.258 1.258 0 0 0 0-2.283l-1.705-.76A10.38 10.38 0 0 1 13.22 5.21l-.601-1.448a1.201 1.201 0 0 0-2.237 0l-.601 1.45a10.37 10.37 0 0 1-5.346 5.52l-1.703.757a1.258 1.258 0 0 0 0 2.285l1.802.805a10.35 10.35 0 0 1 5.273 5.34l.584 1.343a1.201 1.201 0 0 0 2.218 0M19.35 7.767l.185-.424A3.27 3.27 0 0 1 21.2 5.656l.57-.254a.398.398 0 0 0 0-.72l-.539-.24a3.28 3.28 0 0 1-1.688-1.744l-.19-.457a.38.38 0 0 0-.706 0l-.19.458a3.28 3.28 0 0 1-1.688 1.743l-.538.239a.398.398 0 0 0 0 .721l.57.254c.746.335 1.34.936 1.665 1.687l.184.424a.38.38 0 0 0 .7 0" })
9
- ] });
10
- export {
11
- SvgIconAiFill as default
12
- };
@@ -1,7 +0,0 @@
1
- import { SVGProps } from 'react';
2
- interface SVGRProps {
3
- title?: string;
4
- titleId?: string;
5
- }
6
- declare const SvgIconExercizerAi: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
- export default SvgIconExercizerAi;
@@ -1,14 +0,0 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
2
- const SvgIconExercizerAi = ({
3
- title,
4
- titleId,
5
- ...props
6
- }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
- /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M6.5 5a.5.5 0 0 0-.5.5v15a.5.5 0 0 0 .5.5h12a.5.5 0 0 0 .5-.5v-8a1 1 0 1 1 2 0v8a2.5 2.5 0 0 1-2.5 2.5h-12A2.5 2.5 0 0 1 4 20.5v-15A2.5 2.5 0 0 1 6.5 3h5a1 1 0 1 1 0 2z", clipRule: "evenodd" }),
9
- /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M8 9a1 1 0 0 1 1-1h3a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1M8 13a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1M8 17a1 1 0 0 1 1-1h7a1 1 0 1 1 0 2H9a1 1 0 0 1-1-1", clipRule: "evenodd" }),
10
- /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "m18.584 10.611.308-.707a5.45 5.45 0 0 1 2.774-2.811l.95-.422a.662.662 0 0 0 0-1.202l-.898-.4a5.46 5.46 0 0 1-2.812-2.906l-.317-.762a.631.631 0 0 0-1.177 0l-.316.763a5.46 5.46 0 0 1-2.814 2.905l-.896.399a.662.662 0 0 0 0 1.203l.948.423a5.45 5.45 0 0 1 2.775 2.81l.308.707a.633.633 0 0 0 1.167 0" })
11
- ] });
12
- export {
13
- SvgIconExercizerAi as default
14
- };
@@ -1,7 +0,0 @@
1
- import { SVGProps } from 'react';
2
- interface SVGRProps {
3
- title?: string;
4
- titleId?: string;
5
- }
6
- declare const SvgIconLabel: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
- export default SvgIconLabel;
@@ -1,12 +0,0 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
2
- const SvgIconLabel = ({
3
- title,
4
- titleId,
5
- ...props
6
- }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 18 12", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
- /* @__PURE__ */ jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M2.25 1.5a.75.75 0 0 0-.75.75v7.5c0 .414.336.75.75.75h9.512a.75.75 0 0 0 .552-.242l3.45-3.75a.75.75 0 0 0 0-1.016l-3.45-3.75a.75.75 0 0 0-.552-.242zM0 2.25A2.25 2.25 0 0 1 2.25 0h9.512c.63 0 1.23.264 1.656.727l3.45 3.75a2.25 2.25 0 0 1 0 3.046l-3.45 3.75a2.25 2.25 0 0 1-1.656.727H2.25A2.25 2.25 0 0 1 0 9.75z", clipRule: "evenodd" })
9
- ] });
10
- export {
11
- SvgIconLabel as default
12
- };
@@ -1,7 +0,0 @@
1
- import { SVGProps } from 'react';
2
- interface SVGRProps {
3
- title?: string;
4
- titleId?: string;
5
- }
6
- declare const SvgIconTeacher: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
- export default SvgIconTeacher;
@@ -1,12 +0,0 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
2
- const SvgIconTeacher = ({
3
- title,
4
- titleId,
5
- ...props
6
- }) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", "aria-hidden": "true", "aria-labelledby": titleId, ...props, children: [
7
- title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
8
- /* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M2 17.944V10q0-.89.653-1.5.653-.611 1.541-.556A14.6 14.6 0 0 1 12 11.722a14.6 14.6 0 0 1 7.806-3.778 1.99 1.99 0 0 1 1.541.556Q22 9.11 22 10v7.944q0 .89-.583 1.514-.584.626-1.473.68a17 17 0 0 0-3.444.918q-1.666.638-3.111 1.694a2.2 2.2 0 0 1-.653.375 2.2 2.2 0 0 1-.736.125q-.39 0-.736-.125a2.2 2.2 0 0 1-.653-.375Q9.167 21.695 7.5 21.056a17 17 0 0 0-3.444-.917q-.89-.056-1.473-.68A2.14 2.14 0 0 1 2 17.943M12 21a16 16 0 0 1 3.722-2.083 16.3 16.3 0 0 1 4.056-1.028v-7.667q-2.027.361-3.986 1.459-1.959 1.097-3.792 2.93-1.833-1.833-3.792-2.93t-3.986-1.459v7.667q2.084.25 4.056 1.028A16 16 0 0 1 12 21m0-12.111q-1.834 0-3.139-1.306-1.305-1.305-1.305-3.139T8.86 1.306Q10.166 0 12 0q1.833 0 3.139 1.306 1.305 1.305 1.305 3.138 0 1.834-1.305 3.14Q13.834 8.888 12 8.888m0-2.222a2.14 2.14 0 0 0 1.57-.653 2.14 2.14 0 0 0 .652-1.57 2.14 2.14 0 0 0-.653-1.569A2.14 2.14 0 0 0 12 2.222a2.14 2.14 0 0 0-1.57.653 2.14 2.14 0 0 0-.652 1.57q0 .916.653 1.569A2.14 2.14 0 0 0 12 6.667" })
9
- ] });
10
- export {
11
- SvgIconTeacher as default
12
- };