react-icons/ai#AiOutlineLinkedin JavaScript Examples
The following examples show how to use
react-icons/ai#AiOutlineLinkedin.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SocialModal.js From portfolio-react with MIT License | 5 votes |
function SocialModal() {
return (
<Social>
<Container>
<SocialIcons>
<Icon label='github'>
<AiOutlineGithub size={35} />
<CustomLink href='https://github.com/pranjaljain0' target='_blank'>
@pranjaljain0
</CustomLink>
</Icon>
<Icon label='linkedin'>
<AiOutlineLinkedin size={35} />
<CustomLink
href='https://www.linkedin.com/in/pranjaljain0/'
target='_blank'>
@pranjaljain0
</CustomLink>
</Icon>
</SocialIcons>
<InputGroup className='mb-3'>
<FormControl
placeholder='Full name'
aria-label='Name'
aria-describedby='basic-addon1'
/>
</InputGroup>
<InputGroup className='mb-3'>
<FormControl
placeholder='Email address'
aria-label='Email'
aria-describedby='basic-addon1'
/>
</InputGroup>
<InputGroup>
<FormControl
as='textarea'
aria-label='With textarea'
placeholder='Write some description'
style={{
resize: 'none',
height: 100,
}}
/>
</InputGroup>
<ButtonForm>
<Button variant='outline-secondary' className='float-right'>
Submit
</Button>
</ButtonForm>
</Container>
</Social>
)
}