-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
website: update blockquote documentation & demo (#1260)
Co-authored-by: Greta <[email protected]>
- Loading branch information
1 parent
ba1373f
commit 03f890c
Showing
4 changed files
with
36 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Bentley Systems, Incorporated. All rights reserved. | ||
* See LICENSE.md in the project root for license terms and full copyright notice. | ||
*--------------------------------------------------------------------------------------------*/ | ||
import * as React from 'react'; | ||
import { Blockquote } from '@itwin/itwinui-react'; | ||
|
||
export default () => { | ||
return ( | ||
<Blockquote | ||
cite={'https://www.bentley.com/en'} | ||
footer={ | ||
<> | ||
— Greg Bentley, <cite>NasdaqListed</cite> | ||
</> | ||
} | ||
> | ||
<p> | ||
For 36 years we have served engineers with our software, passionately 35 believing that | ||
better performing and more resilient infrastructure is 36 essential to improve the quality | ||
of life for people everywhere, sustain 37 our environment, and grow our economies. | ||
</p> | ||
</Blockquote> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters