Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* Copyright 2024 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/

import Book_L from 'illustration:./S2_fill_book_generic1_160.svg';
import Book_M from 'illustration:./S2_fill_book_generic1_96.svg';
import Book_S from 'illustration:./S2_fill_book_generic1_48.svg';
import {ReactNode} from 'react';
import {IconProps, IllustrationContext} from '../../../src/Icon';
import {useContextProps} from 'react-aria-components';

export default function Book(props: IconProps & {size?: 'L' | 'S' | 'M'}): ReactNode {
[props] = useContextProps(props, null, IllustrationContext);
let {size = 'M', ...otherProps} = props;
switch (size) {
case 'L':
return <Book_L {...otherProps} />;
case 'S':
return <Book_S {...otherProps} />;
case 'M':
return <Book_M {...otherProps} />;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* Copyright 2024 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/

import BrokenBacklink_L from 'illustration:./S2_fill_brokenBacklink_generic1_160.svg';
import BrokenBacklink_M from 'illustration:./S2_fill_brokenBacklink_generic1_96.svg';
import BrokenBacklink_S from 'illustration:./S2_fill_brokenBacklink_generic1_48.svg';
import {ReactNode} from 'react';
import {IconProps, IllustrationContext} from '../../../src/Icon';
import {useContextProps} from 'react-aria-components';

export default function BrokenBacklink(props: IconProps & {size?: 'L' | 'S' | 'M'}): ReactNode {
[props] = useContextProps(props, null, IllustrationContext);
let {size = 'M', ...otherProps} = props;
switch (size) {
case 'L':
return <BrokenBacklink_L {...otherProps} />;
case 'S':
return <BrokenBacklink_S {...otherProps} />;
case 'M':
return <BrokenBacklink_M {...otherProps} />;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* Copyright 2024 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/

import BrokenLink_L from 'illustration:./S2_fill_brokenLink_generic1_160.svg';
import BrokenLink_M from 'illustration:./S2_fill_brokenLink_generic1_96.svg';
import BrokenLink_S from 'illustration:./S2_fill_brokenLink_generic1_48.svg';
import {ReactNode} from 'react';
import {IconProps, IllustrationContext} from '../../../src/Icon';
import {useContextProps} from 'react-aria-components';

export default function BrokenLink(props: IconProps & {size?: 'L' | 'S' | 'M'}): ReactNode {
[props] = useContextProps(props, null, IllustrationContext);
let {size = 'M', ...otherProps} = props;
switch (size) {
case 'L':
return <BrokenLink_L {...otherProps} />;
case 'S':
return <BrokenLink_S {...otherProps} />;
case 'M':
return <BrokenLink_M {...otherProps} />;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* Copyright 2024 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/

import NoMetadata_L from 'illustration:./S2_fill_noMetadata_generic1_160.svg';
import NoMetadata_M from 'illustration:./S2_fill_noMetadata_generic1_96.svg';
import NoMetadata_S from 'illustration:./S2_fill_noMetadata_generic1_48.svg';
import {ReactNode} from 'react';
import {IconProps, IllustrationContext} from '../../../src/Icon';
import {useContextProps} from 'react-aria-components';

export default function NoMetadata(props: IconProps & {size?: 'L' | 'S' | 'M'}): ReactNode {
[props] = useContextProps(props, null, IllustrationContext);
let {size = 'M', ...otherProps} = props;
switch (size) {
case 'L':
return <NoMetadata_L {...otherProps} />;
case 'S':
return <NoMetadata_S {...otherProps} />;
case 'M':
return <NoMetadata_M {...otherProps} />;
}
}
Loading