ReactJS Blueprint Callout Component Last Updated : 08 Apr, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Callout Component provides a way for users to visually highlight important content for the user. We can use the following approach in ReactJS to use the ReactJS Blueprint Callout Component. Callout Props: className: It is used to denote a space-delimited list of class names to pass along to a child element.icon: It is used to denote the name of a Blueprint UI icon (or an icon element) to render on the left side.intent: It is used to denote the visual intent color to apply to the background, title and icon.title: It is used to denote the string content of the optional title element.Creating React Application And Installing Module: Step 1: Create a React application using the following command: npx create-react-app foldername Step 2: After creating your project folder i.e. foldername, move to it using the following command: cd foldername Step 3: After creating the ReactJS application, Install the required module using the following command: npm install @blueprintjs/core Project Structure: It will look like the following. Project StructureExample: Now write down the following code in the App.js file. Here, App is our default component where we have written our code. App.js import React from 'react' import '@blueprintjs/core/lib/css/blueprint.css'; import { Callout } from "@blueprintjs/core"; function App() { return ( <div style={{ display: 'block', width: 700, padding: 30 }}> <h4>ReactJS Blueprint Callout Component</h4> <Callout title="Sample Callout Title"> Greetings from GeeksforGeeks! </Callout> </div> ); } export default App; Step to Run Application: Run the application using the following command from the root directory of the project: npm startOutput: Now open your browser and go to http://localhost:3000/, you will see the following output: Reference: https://blueprintjs.com/docs/#core/components/callout Comment More infoAdvertise with us Next Article ReactJS Blueprint Callout Component G gouravhammad Follow Improve Article Tags : ReactJS React-Blueprint Blueprint-Core Blueprint-Components Similar Reads ReactJS Blueprint Card Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Card Component is used as a simple rectangular container, and it is used when the user wants to display content related to a s 2 min read React.js Blueprint Callout Component CSS BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Callout Component provides a way for users to visually highlight important content for the user. React.js Blueprint Callout C 3 min read ReactJS Blueprint Button Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Button Component provides a way for users to take actions, and make choices, with a single tap. We can use the following appro 3 min read React.js Blueprint Callout Component Props BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Callout Component provides a way for users to visually highlight important content for the user. There are different props ava 3 min read ReactJS Blueprint Checkbox Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Checkbox Component provides a way for users to toggle between checked, unchecked, and indeterminate states. We can use the fol 3 min read Like