Font

Inter Regular

Inter Semi Bold

import React from 'react';
import { Row, Col } from 'seduo-company-ui';

export default class Example extends React.Component {
    render() {
        return (
            <div>
                <Row>
                    <Col>
                        <p>Inter Regular</p>
                        <p>
                            <strong>Inter Semi Bold</strong>
                        </p>
                    </Col>
                </Row>
            </div>
        );
    }
}