Skip to content
Snippets Groups Projects
Commit e14f1c2a authored by Puneeth Kharvi's avatar Puneeth Kharvi
Browse files

Merge branch 'development' of...

Merge branch 'development' of gitlab.niveussolutions.com:sujatamurgod/sample_argon into feture/puneeth/input_task
parents e4b16fca df9c2148
No related branches found
No related tags found
No related merge requests found
{
"compilerOptions": {
"baseUrl": "src"
},
"include": [
"src"
]
}
\ No newline at end of file
......@@ -13,6 +13,7 @@
"@testing-library/user-event": "^13.5.0",
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"install": "^0.13.0",
"jquery": "^3.6.0",
"node-sass": "^7.0.1",
"react": "^17.0.2",
......@@ -8697,6 +8698,14 @@
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
},
"node_modules/install": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/install/-/install-0.13.0.tgz",
"integrity": "sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==",
"engines": {
"node": ">= 0.10"
}
},
"node_modules/internal-slot": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
......@@ -23648,6 +23657,11 @@
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="
},
"install": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/install/-/install-0.13.0.tgz",
"integrity": "sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA=="
},
"internal-slot": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
......@@ -8,6 +8,7 @@
"@testing-library/user-event": "^13.5.0",
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"install": "^0.13.0",
"jquery": "^3.6.0",
"node-sass": "^7.0.1",
"react": "^17.0.2",
......
......
import React from "react";
function Image(props) {
const { imageClass, src, alt, width,height} = props;
return (
<img
className={imageClass }
src={src}
alt={alt}
height={height}
width={width}
/>
);
}
Image.defaultProps = {
src: require("../../images/noimage.jpg"),
alt: "Image",
height: "100px",
width: "100px",
}
export default Image;
\ No newline at end of file
export { default as Button } from "./Button";
import React from 'react'
import PropTypes from 'prop-types'
import {ProfileCover} from "../../assets/img/index";
import "../../style/common/icons.scss";
//import "../../style/common/icons.scss";
function index(props) {
return (
<div>
<img src={ProfileCover} alt="" height="200px" width="200px" />
<i className="ni ni-tv-2 text-primary"></i>
<i className="ni ni-planet text-primary"></i>
</div>
......
......
src/images/noimage.jpg

8.21 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment