@ant-design/icons#ChromeOutlined JavaScript Examples

The following examples show how to use @ant-design/icons#ChromeOutlined. 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: Footer.js    From 4IZ268-2021-2022-ZS with MIT License 6 votes vote down vote up
Footer = () => {
    return (
        <div className={'footer-container'}>
            <img width={164} height={50} src={logo} alt='Logo SKOB'/>
            <Space direction='vertical' style={{ justifyContent: 'flex-end' }}>
                <Space>
                    <Text italic>Follow: </Text>
                    <a href='https://www.facebook.com/skobroudnice' target='_blank' rel="noreferrer">
                        <FacebookOutlined style={{ fontSize: '1.5rem' }} />
                    </a>
                    <a href='https://obroudnice.cz/' target='_blank' rel="noreferrer">
                        <ChromeOutlined style={{ fontSize: '1.5rem' }} />
                    </a>
                </Space>
                <Text italic>Design made by &copy; <a href='mailto: [email protected]'>Petr Buk</a></Text>
            </Space>
        </div>
    )
}