## Tape Usage example: ```typescript jsx import { Tape, PostType, Text } from '@project-1114/ui-kit' const posts: PostType[] = [ {id: '1', title: 'The types of sizes', subtitle: '04/29/2024', description: ( size type S (Nunito Sans). Use for texts. size type S (Nunito Sans). Use for texts (bold). size type M (Nunito Sans). Use for texts. size type M (Nunito Sans). Use for texts (bold). size type L (Roboto). Use for titles. size type L (Roboto). Use for titles (bold). size type XL (Roboto). Use for titles. size type XL (Roboto). Use for titles (bold). )}, {id: '2', title: 'The color specter: main', subtitle: '04/29/2024', description: ( The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors )}, {id: '3', title: 'The color specter: secondary', subtitle: '04/29/2024', description: ( The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors )}, {id: '4', title: 'The color specter: warning', subtitle: '04/29/2024', description: ( The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors )}, {id: '5', title: 'The color specter: error', subtitle: '04/29/2024', description: ( The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors )}, {id: '6', title: 'The color specter: success', subtitle: '04/29/2024', description: ( The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors )}, {id: '7', title: 'The color specter: info', subtitle: '04/29/2024', description: ( The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors The semanthic of colors )}, ]; export function App(){ return ( Новые шрифты! posts={posts} /> ) } ```