- Welcome
- Getting started
- Latest updates
- Monthly updates
- Foundations
-
Components
- Accordion
- Alert
- Alignment
- App Search Modal
- Aria live
- Autosuggest
- Badge
- Banner alert
- Bar chart
- Blockquote
- Bottom navigation
- Bottom sheet
- Breadcrumb
- Breakpoint
- Button
- Calendar
- Card
- Card list
- Card button
- Carousel
- Checkbox
- Chip
- Chip group
- Code
- Content cards
- Data Table
- Datepicker
- Description list
- Dialog
- Divider
- Drawer
- Field Set
- Flare
- Flat list
- Flight leg
- Floating action button
- Floating notification
- Form label
- Form validation
- Graphic promotion
- Horizontal navigation
- Icon
- Image
- Infinite scroll
- Info Banner
- Link
- List
- Map
- Mobile scroll container
- Modal
- Navigation bar
- Nudger
- Overlay
- Page indicator
- Pagination
- Panel
- Phone input
- Picker
- Popover
- Price
- Progress bar
- Radio button
- Rating
- Scrollable calendar
- Search Modal
- Section header
- Section list
- Select
- Skeleton
- Skip link
- Slider
- Snackbar
- Snippet
- Spinner
- Split input
- Star rating
- Switch
- Table
- Text
- Text input
- Theming
- Ticket
- Toast
- Tooltip
- Touchable native feedback
- Touchable overlay
- Content
- Accessibility
- Contributing
Code
The code component can be used to format a piece of text or entire text block as code.
Default
Use BpkCode for inline code blocks.
Alternate
Use the alternate prop for displaying on dark backgrounds.
Block
For a block of code, use BpkCodeBlock.
Block alternate
Use the alternate prop for displaying on dark backgrounds.
bpk-component-code
Backpack code component.
Installation
Check the main Readme for a complete installation guide.
Usage
import { BpkCode, BpkCodeBlock } from '@skyscanner/backpack-web/bpk-component-code';
import BpkText from '@skyscanner/backpack-web/bpk-component-text';
const codeBlock = `import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render(<App />, ...);`;
export default () => (
<div>
<BpkText tagName='p'>
We recommend using React from npm with a bundler like webpack. You can use
the <BpkCode>react</BpkCode> and <BpkCode>react-dom</BpkCode> packages. After installing it
using <BpkCode>npm install --save react react-dom</BpkCode>, you can use:
</BpkText>
<BpkCodeBlock>{codeBlock}</BpkCodeBlock>
</div>
);
Props
Check out the full list of props on Skyscanner's design system documentation website.
Props
Made with ❤️ by Skyscanner © 2023
© 2023 Skyscanner Backpack. Page last updated on Oct 2, 2023, 15:51